Merge remote branch 'remotes/elrond/dev/storage_config'
[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.4",
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 'Markdown',
47 'python-cloudfiles',
48 ## For now we're expecting that users will install this from
49 ## their package managers.
50 # 'lxml',
51 ],
52 test_suite='nose.collector',
53 entry_points = """\
54 [console_scripts]
55 gmg = mediagoblin.gmg_commands:main_cli
56 pybabel = mediagoblin.babel.messages.frontend:main
57
58 [paste.app_factory]
59 app = mediagoblin.app:paste_app_factory
60
61 [paste.filter_app_factory]
62 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
63
64 [zc.buildout]
65 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
66
67 [babel.extractors]
68 jinja2 = jinja2.ext:babel_extract
69 """,
70
71 license='AGPLv3',
72 author='Free Software Foundation and contributors',
73 author_email='cwebber@gnu.org',
74 url="http://mediagoblin.org/",
75 download_url="http://mediagoblin.org/download/",
76 long_description=open('README').read(),
77 classifiers=[
78 "Development Status :: 3 - Alpha",
79 "Environment :: Web Environment",
80 "License :: OSI Approved :: GNU Affero General Public License",
81 "Operating System :: OS Independent",
82 "Programming Language :: Python",
83 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
84 ],
85 )