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