py2.7 compatibility with open(..., encoding="utf-8"), use io.open
[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 py2_only_install_requires = []
44 if PY2:
45 py2_only_install_requires.append('argparse') # only for < 2.7
46 py2_only_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 py2_only_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 py2_only_install_requires.append('pbr==0.5.22')
55 py2_only_install_requires.append('mock') # mock is in the stdlib for 3.3+
56
57 install_requires = [
58 # TODO(berker): Upgrade to 19.2
59 # See https://github.com/benoitc/gunicorn/issues/830
60 'gunicorn==19',
61 'alembic==0.6.6',
62 'python-dateutil',
63 'wtforms',
64 'py-bcrypt',
65 'pytest>=2.3.1',
66 'pytest-xdist',
67 'werkzeug>=0.7',
68 'celery>=3.0',
69 'kombu',
70 'jinja2',
71 'Babel>=1.3',
72 'webtest<2',
73 'ConfigObj',
74 'Markdown',
75 'sqlalchemy<0.9.0, >0.8.0',
76 'itsdangerous',
77 'pytz',
78 # PLEASE change this when we can; a dependency is forcing us to set this
79 # specific number and it is breaking setup.py develop
80 'six==1.5.2',
81 'oauthlib>=0.5.0',
82 'unidecode',
83 'ExifRead', # TODO(berker): Install develop branch for Python 3
84 'PasteDeploy',
85 # This is optional:
86 # 'translitcodec',
87 # For now we're expecting that users will install this from
88 # their package managers.
89 # 'lxml',
90 # 'Pillow',
91 ] + py2_only_install_requires
92
93 with open(READMEFILE, encoding="utf-8") as fobj:
94 long_description = fobj.read()
95
96 try:
97 setup(
98 name="mediagoblin",
99 version=get_version(),
100 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
101 zip_safe=False,
102 include_package_data = True,
103 # scripts and dependencies
104 install_requires=install_requires,
105 test_suite='nose.collector', # TODO: We are using py.test now?
106 entry_points="""\
107 [console_scripts]
108 gmg = mediagoblin.gmg_commands:main_cli
109 pybabel = mediagoblin.babel.messages.frontend:main
110
111 [paste.app_factory]
112 app = mediagoblin.app:paste_app_factory
113
114 [paste.filter_app_factory]
115 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
116
117 [zc.buildout]
118 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
119
120 [babel.extractors]
121 jinja2 = jinja2.ext:babel_extract
122 """,
123 license='AGPLv3',
124 author='Free Software Foundation and contributors',
125 author_email='cwebber@gnu.org',
126 url="http://mediagoblin.org/",
127 download_url="http://mediagoblin.org/download/",
128 long_description=long_description,
129 classifiers=[
130 "Development Status :: 3 - Alpha",
131 "Environment :: Web Environment",
132 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
133 "Operating System :: OS Independent",
134 "Programming Language :: Python",
135 'Programming Language :: Python :: 2',
136 'Programming Language :: Python :: 2.6',
137 'Programming Language :: Python :: 2.7',
138 'Programming Language :: Python :: 3',
139 'Programming Language :: Python :: 3.3',
140 'Programming Language :: Python :: 3.4',
141 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
142 ],
143 )
144 except TypeError as e:
145 import sys
146
147 # Check if the problem is caused by the sqlalchemy/setuptools conflict
148 msg_as_str = str(e)
149 if not (msg_as_str == 'dist must be a Distribution instance'):
150 raise
151
152 # If so, tell the user it is OK to just run the script again.
153 print("\n\n---------- NOTE ----------", file=sys.stderr)
154 print("The setup.py command you ran failed.\n", file=sys.stderr)
155 print("It is a known possible failure. Just run it again. It works the "
156 "second time.", file=sys.stderr)
157 sys.exit(1)