Merge remote-tracking branch 'joar/exif-rebase'
[mediagoblin.git] / setup.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
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 import os
19 import re
20
21 READMEFILE = "README"
22 VERSIONFILE = os.path.join("mediagoblin", "_version.py")
23 VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
24
25
26 def get_version():
27 verstrline = open(VERSIONFILE, "rt").read()
28 mo = re.search(VSRE, verstrline, re.M)
29 if mo:
30 return mo.group(1)
31 else:
32 raise RuntimeError("Unable to find version string in %s." %
33 VERSIONFILE)
34
35
36 setup(
37 name="mediagoblin",
38 version=get_version(),
39 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
40 zip_safe=False,
41 include_package_data = True,
42 # scripts and dependencies
43 install_requires=[
44 'setuptools',
45 'PasteScript',
46 'beaker',
47 'routes',
48 'pymongo',
49 'mongokit',
50 'webob<=1.2a2',
51 'wtforms',
52 'py-bcrypt',
53 'nose',
54 'werkzeug',
55 'celery',
56 'jinja2',
57 'sphinx',
58 'PIL',
59 'Babel',
60 'translitcodec',
61 'argparse',
62 'webtest',
63 'ConfigObj',
64 'Markdown',
65 ## For now we're expecting that users will install this from
66 ## their package managers.
67 # 'lxml',
68 ],
69 # requires=['gst'],
70 test_suite='nose.collector',
71 entry_points="""\
72 [console_scripts]
73 gmg = mediagoblin.gmg_commands:main_cli
74 pybabel = mediagoblin.babel.messages.frontend:main
75
76 [paste.app_factory]
77 app = mediagoblin.app:paste_app_factory
78
79 [paste.filter_app_factory]
80 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
81
82 [zc.buildout]
83 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
84
85 [babel.extractors]
86 jinja2 = jinja2.ext:babel_extract
87 """,
88 license='AGPLv3',
89 author='Free Software Foundation and contributors',
90 author_email='cwebber@gnu.org',
91 url="http://mediagoblin.org/",
92 download_url="http://mediagoblin.org/download/",
93 long_description=open(READMEFILE).read(),
94 classifiers=[
95 "Development Status :: 3 - Alpha",
96 "Environment :: Web Environment",
97 "License :: OSI Approved :: GNU Affero General Public License",
98 "Operating System :: OS Independent",
99 "Programming Language :: Python",
100 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
101 ],
102 )