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