Merge remote branch 'remotes/cmoylan/test_auth_views_364'
[mediagoblin.git] / setup.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011 Free Software Foundation, Inc
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 from setuptools import setup, find_packages
18
19 setup(
20 name = "mediagoblin",
21 version = "0.0.2",
22 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
23 zip_safe=False,
24 # scripts and dependencies
25 install_requires = [
26 'setuptools',
27 'PasteScript',
28 'beaker',
29 'routes',
30 'pymongo',
31 'mongokit',
32 'webob',
33 'wtforms',
34 'py-bcrypt',
35 'nose',
36 'werkzeug',
37 'celery',
38 'jinja2',
39 'sphinx',
40 'PIL',
41 'Babel',
42 'translitcodec',
43 'argparse',
44 'webtest',
45 'ConfigObj',
46 ## For now we're expecting that users will install this from
47 ## their package managers.
48 # 'lxml',
49 ],
50 test_suite='nose.collector',
51
52 license = 'AGPLv3',
53 author = 'Free Software Foundation and contributors',
54 author_email = 'cwebber@gnu.org',
55 entry_points = """\
56 [console_scripts]
57 gmg = mediagoblin.gmg_commands:main_cli
58
59 [paste.app_factory]
60 app = mediagoblin.app:paste_app_factory
61
62 [zc.buildout]
63 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
64
65 [babel.extractors]
66 jinja2 = jinja2.ext:babel_extract
67 """,
68 )