Update dependency list.
[mediagoblin.git] / setup.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 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 __future__ import print_function
18
19 from setuptools import setup, find_packages
20 import os
21 import re
22
23 import sys
24
25 PY2 = sys.version_info[0] == 2 # six is not installed yet
26
27 READMEFILE = "README"
28 VERSIONFILE = os.path.join("mediagoblin", "_version.py")
29 VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
30
31
32 def get_version():
33 with open(VERSIONFILE, "rt") as fobj:
34 verstrline = fobj.read()
35 mo = re.search(VSRE, verstrline, re.M)
36 if mo:
37 return mo.group(1)
38 else:
39 raise RuntimeError("Unable to find version string in %s." %
40 VERSIONFILE)
41
42 py2_only_install_requires = []
43 if PY2:
44 py2_only_install_requires.append('argparse') # only for < 2.7
45 py2_only_install_requires.append('PasteScript')
46 # newer sqlalchemy-migrate requires pbr which BREAKS EVERYTHING AND IS
47 # TERRIBLE AND IS THE END OF ALL THINGS
48 # I'd love to remove this restriction.
49 py2_only_install_requires.append('sqlalchemy-migrate<0.8')
50 # Annoying. Please remove once we can! We only indirectly
51 # use pbr, and currently it breaks things, presumably till
52 # their next release.
53 py2_only_install_requires.append('pbr==0.5.22')
54 py2_only_install_requires.append('mock') # mock is in the stdlib for 3.3+
55
56 install_requires = [
57 'gunicorn==19', # TODO: Upgrade to 19.2 -- see https://github.com/benoitc/gunicorn/issues/830
58 'python-dateutil',
59 'wtforms',
60 'py-bcrypt',
61 'pytest>=2.3.1',
62 'pytest-xdist',
63 'werkzeug>=0.7',
64 'celery>=3.0',
65 'kombu',
66 'jinja2',
67 'Babel>=1.3',
68 'webtest<2',
69 'ConfigObj',
70 'Markdown',
71 'sqlalchemy<0.9.0, >0.8.0',
72 'itsdangerous',
73 'pytz',
74 # PLEASE change this when we can; a dependency is forcing us to set this
75 # specific number and it is breaking setup.py develop
76 'six==1.5.2',
77 'oauthlib>=0.5.0',
78 'unidecode',
79 'ExifRead',
80 'PasteDeploy',
81 # This is optional:
82 # 'translitcodec',
83 # For now we're expecting that users will install this from
84 # their package managers.
85 # 'lxml',
86 # 'Pillow',
87 ] + py2_only_install_requires
88
89 with open(READMEFILE) as fobj:
90 long_description = fobj.read()
91
92 try:
93 setup(
94 name="mediagoblin",
95 version=get_version(),
96 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
97 zip_safe=False,
98 include_package_data = True,
99 # scripts and dependencies
100 install_requires=install_requires,
101 test_suite='nose.collector', # TODO: We are using py.test now?
102 entry_points="""\
103 [console_scripts]
104 gmg = mediagoblin.gmg_commands:main_cli
105 pybabel = mediagoblin.babel.messages.frontend:main
106
107 [paste.app_factory]
108 app = mediagoblin.app:paste_app_factory
109
110 [paste.filter_app_factory]
111 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
112
113 [zc.buildout]
114 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
115
116 [babel.extractors]
117 jinja2 = jinja2.ext:babel_extract
118 """,
119 license='AGPLv3',
120 author='Free Software Foundation and contributors',
121 author_email='cwebber@gnu.org',
122 url="http://mediagoblin.org/",
123 download_url="http://mediagoblin.org/download/",
124 long_description=long_description,
125 classifiers=[
126 "Development Status :: 3 - Alpha",
127 "Environment :: Web Environment",
128 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
129 "Operating System :: OS Independent",
130 "Programming Language :: Python",
131 'Programming Language :: Python :: 2',
132 'Programming Language :: Python :: 2.6',
133 'Programming Language :: Python :: 2.7',
134 'Programming Language :: Python :: 3',
135 'Programming Language :: Python :: 3.3',
136 'Programming Language :: Python :: 3.4',
137 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
138 ],
139 )
140 except TypeError as e:
141 import sys
142
143 # Check if the problem is caused by the sqlalchemy/setuptools conflict
144 msg_as_str = str(e)
145 if not (msg_as_str == 'dist must be a Distribution instance'):
146 raise
147
148 # If so, tell the user it is OK to just run the script again.
149 print("\n\n---------- NOTE ----------", file=sys.stderr)
150 print("The setup.py command you ran failed.\n", file=sys.stderr)
151 print("It is a known possible failure. Just run it again. It works the "
152 "second time.", file=sys.stderr)
153 sys.exit(1)