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