Added extraction stuff that's not used but appears to work :)
[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.1",
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 ],
43 test_suite='nose.collector',
44
45 license = 'AGPLv3',
46 author = 'Christopher Webber',
47 author_email = 'cwebber@gnu.org',
48 entry_points = """\
49 [paste.app_factory]
50 app = mediagoblin.app:paste_app_factory
51
52 [zc.buildout]
53 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
54
55 [babel.extractors]
56 jinja2 = jinja2.ext:babel_extract
57 """,
58 )