Add release notes for v0.10.0.
[mediagoblin.git] / setup.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
7f4ebeed 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
e5572c60
ML
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
897354e6
BP
17from __future__ import print_function
18
c1b342ba 19from setuptools import setup, find_packages
0c32c7fe 20from io import open
cf37fffc
WKG
21import os
22import re
23
897354e6
BP
24import sys
25
26PY2 = sys.version_info[0] == 2 # six is not installed yet
27
cf37fffc
WKG
28READMEFILE = "README"
29VERSIONFILE = os.path.join("mediagoblin", "_version.py")
30VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
31
32
33def get_version():
897354e6
BP
34 with open(VERSIONFILE, "rt") as fobj:
35 verstrline = fobj.read()
cf37fffc
WKG
36 mo = re.search(VSRE, verstrline, re.M)
37 if mo:
38 return mo.group(1)
39 else:
243c3843
NY
40 raise RuntimeError("Unable to find version string in %s." %
41 VERSIONFILE)
cf37fffc 42
2e2a1aec 43pyversion_install_requires = []
897354e6 44if PY2:
880b2584
BS
45 pyversion_install_requires.append('alabaster<=0.7.999') # Tested with 0.7.12
46 pyversion_install_requires.append('alembic<=1.4.999') # Tested with 1.4.2
47 pyversion_install_requires.append('amqp<=2.5.999') # Tested with 2.5.2
48 pyversion_install_requires.append('apipkg<=1.999') # Tested with 1.5
49 pyversion_install_requires.append('atomicwrites<=1.4.999') # Tested with 1.4.0
50 pyversion_install_requires.append('attrs<=19.3.999') # Tested with 19.3.0
51 pyversion_install_requires.append('Babel<=2.8.999') # Tested with 2.8.0
52 pyversion_install_requires.append('beautifulsoup4<=4.7.999') # Tested with 4.7.1
53 pyversion_install_requires.append('billiard<=3.5.0.999') # Tested with 3.5.0.5
54 pyversion_install_requires.append('celery<=4.2.999') # Tested with 4.2.2
55 pyversion_install_requires.append('certifi<=2020.4.5.999') # Tested with 2020.4.5.1
56 pyversion_install_requires.append('chardet<=3.0.999') # Tested with 3.0.4
57 pyversion_install_requires.append('configobj<=5.0.999') # Tested with 5.0.6
58 pyversion_install_requires.append('configparser<=5.0.999') # Tested with 5.0.0
59 pyversion_install_requires.append('contextlib2<=0.6.999') # Tested with 0.6.0.post1
60 pyversion_install_requires.append('decorator<=4.4.999') # Tested with 4.4.2
61 pyversion_install_requires.append('dnspython<=1.16.999') # Tested with 1.16.0
62 pyversion_install_requires.append('docutils<=0.999') # Tested with 0.16
63 pyversion_install_requires.append('email-validator<=1.0.999') # Tested with 1.0.5
64 pyversion_install_requires.append('execnet<=1.7.999') # Tested with 1.7.1
65 pyversion_install_requires.append('ExifRead<=2.1.999') # Tested with 2.1.2
66 pyversion_install_requires.append('funcsigs<=1.0.999') # Tested with 1.0.2
67 pyversion_install_requires.append('functools32<=3.2.999') # Tested with 3.2.3.post2
68 pyversion_install_requires.append('idna<=2.999') # Tested with 2.9
69 pyversion_install_requires.append('imagesize<=1.2.999') # Tested with 1.2.0
70 pyversion_install_requires.append('importlib-metadata<=1.6.999') # Tested with 1.6.0
71 pyversion_install_requires.append('itsdangerous<=1.1.999') # Tested with 1.1.0
72 pyversion_install_requires.append('Jinja2<=2.11.999') # Tested with 2.11.2
73 pyversion_install_requires.append('jsonschema<=3.2.999') # Tested with 3.2.0
74 pyversion_install_requires.append('kombu<=4.3.999') # Tested with 4.3.0
75 pyversion_install_requires.append('Mako<=1.1.999') # Tested with 1.1.2
76 pyversion_install_requires.append('Markdown<=3.1.999') # Tested with 3.1.1
77 pyversion_install_requires.append('MarkupSafe<=1.1.999') # Tested with 1.1.1
78 pyversion_install_requires.append('mock<=1.0.999') # Tested with 1.0.1
79 pyversion_install_requires.append('more-itertools<=5.0.999') # Tested with 5.0.0
80 pyversion_install_requires.append('oauthlib<=3.1.999') # Tested with 3.1.0
81 pyversion_install_requires.append('packaging<=20.999') # Tested with 20.3
82 pyversion_install_requires.append('Paste<=3.4.999') # Tested with 3.4.0
83 pyversion_install_requires.append('PasteDeploy<=2.1.999') # Tested with 2.1.0
84 pyversion_install_requires.append('PasteScript<=3.2.999') # Tested with 3.2.0
85 pyversion_install_requires.append('pathlib2<=2.3.999') # Tested with 2.3.5
86 pyversion_install_requires.append('pbr<=5.4.999') # Tested with 5.4.5
87 pyversion_install_requires.append('pkg-resources<=0.0.999') # Tested with 0.0.0
88 pyversion_install_requires.append('pluggy<=0.13.999') # Tested with 0.13.1
89 pyversion_install_requires.append('py<=1.8.999') # Tested with 1.8.1
90 pyversion_install_requires.append('py-bcrypt<=0.999') # Tested with 0.4
91 pyversion_install_requires.append('Pygments<=2.5.999') # Tested with 2.5.2
92 pyversion_install_requires.append('PyLD<=1.0.999') # Tested with 1.0.5
93 pyversion_install_requires.append('pyparsing<=2.4.999') # Tested with 2.4.7
94 pyversion_install_requires.append('pyrsistent<=0.16.999') # Tested with 0.16.0
95 pyversion_install_requires.append('pytest<=4.6.999') # Tested with 4.6.9
96 pyversion_install_requires.append('pytest-forked<=1.1.999') # Tested with 1.1.3
97 pyversion_install_requires.append('pytest-xdist<=1.31.999') # Tested with 1.31.0
98 pyversion_install_requires.append('python-dateutil<=2.8.999') # Tested with 2.8.1
99 pyversion_install_requires.append('python-editor<=1.0.999') # Tested with 1.0.4
100 pyversion_install_requires.append('pytz<=2020.999') # Tested with 2020.1
101 pyversion_install_requires.append('requests<=2.23.999') # Tested with 2.23.0
102 pyversion_install_requires.append('scandir<=1.10.999') # Tested with 1.10.0
103 pyversion_install_requires.append('six<=1.12.999') # Tested with 1.12.0
104 pyversion_install_requires.append('snowballstemmer<=2.0.999') # Tested with 2.0.0
105 pyversion_install_requires.append('Sphinx<=1.8.999') # Tested with 1.8.5
106 pyversion_install_requires.append('sphinxcontrib-websupport<=1.2.999') # Tested with 1.2.2
107 pyversion_install_requires.append('SQLAlchemy<=1.3.999') # Tested with 1.3.16
108 pyversion_install_requires.append('sqlalchemy-migrate<=0.13.999') # Tested with 0.13.0
109 pyversion_install_requires.append('sqlparse<=0.3.999') # Tested with 0.3.1
110 pyversion_install_requires.append('Tempita<=0.5.999') # Tested with 0.5.3.dev0
111 pyversion_install_requires.append('typing<=3.7.4.999') # Tested with 3.7.4.1
112 pyversion_install_requires.append('Unidecode<=1.1.999') # Tested with 1.1.1
113 pyversion_install_requires.append('urllib3<=1.25.999') # Tested with 1.25.9
114 pyversion_install_requires.append('vine<=1.3.999') # Tested with 1.3.0
115 pyversion_install_requires.append('waitress<=1.4.999') # Tested with 1.4.3
116 pyversion_install_requires.append('wcwidth<=0.1.999') # Tested with 0.1.9
117 pyversion_install_requires.append('WebOb<=1.8.999') # Tested with 1.8.6
118 pyversion_install_requires.append('WebTest<=2.0.999') # Tested with 2.0.35
119 pyversion_install_requires.append('Werkzeug<=0.16.999') # Tested with 0.16.1
120 pyversion_install_requires.append('WTForms<=2.3.999') # Tested with 2.3.1
121 pyversion_install_requires.append('zipp<=1.2.999') # Tested with 1.2.0
897354e6
BP
122
123install_requires = [
d61778a4 124 'waitress',
af6b89ea 125 'alembic>=0.7.5',
897354e6
BP
126 'python-dateutil',
127 'wtforms',
128 'py-bcrypt',
129 'pytest>=2.3.1',
130 'pytest-xdist',
5c779069 131 'werkzeug>=0.7,<1.0.0',
912e5d2b
BS
132 # Celery 4.3.0 drops the "sqlite" transport alias making our tests fail.
133 'celery>=3.0,<4.3.0',
72047cbe
BS
134 # Jinja2 3.0.0 uses f-strings (Python 3.7 and above) but `pip install` on
135 # Debian 9 doesn't seem to respect Jinja2's 'python_requires=">=3.6"' line.
136 'jinja2<3.0.0',
173099ad 137 'Babel>=1.3',
6557bab6 138 'WebTest>=2.0.18',
897354e6
BP
139 'ConfigObj',
140 'Markdown',
f1e79d68 141 'sqlalchemy',
897354e6
BP
142 'itsdangerous',
143 'pytz',
09e2db30 144 'sphinx',
09cd88b0 145 'six>=1.11.0',
f6bad0eb 146 'oauthlib',
897354e6 147 'unidecode',
f6bad0eb 148 'jsonschema',
03ff865c 149 'PasteDeploy',
062e3789 150 'PasteScript',
3252f738 151 'requests>=2.6.0',
16fbe852
BS
152 'PyLD<2.0.0', # Python 2, but also breaks a Python 3 test if >= 2.0.0.
153 'ExifRead>=2.0.0',
154 'email-validator', # Seems that WTForms must have dropped this.
897354e6
BP
155 # This is optional:
156 # 'translitcodec',
157 # For now we're expecting that users will install this from
158 # their package managers.
159 # 'lxml',
173099ad 160 # 'Pillow',
2e2a1aec 161] + pyversion_install_requires
897354e6 162
ab46e89a
BP
163if not PY2:
164 # PyPI version (1.4.2) does not have proper Python 3 support
ab46e89a
BP
165 install_requires.append('ExifRead>=2.0.0')
166
9156ab68 167with open(READMEFILE, encoding="utf-8") as fobj:
897354e6
BP
168 long_description = fobj.read()
169
26990bc0
AL
170try:
171 setup(
243c3843
NY
172 name="mediagoblin",
173 version=get_version(),
c1b342ba 174 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
31a8ff42 175 zip_safe=False,
d595374d 176 include_package_data = True,
0c04118b 177 # scripts and dependencies
897354e6 178 install_requires=install_requires,
4b5f4e87 179 test_suite='nose.collector',
243c3843 180 entry_points="""\
b7e57b1f
WKG
181 [console_scripts]
182 gmg = mediagoblin.gmg_commands:main_cli
029cad45 183
b7e57b1f
WKG
184 [paste.app_factory]
185 app = mediagoblin.app:paste_app_factory
df0953ce 186
227a81b5
CAW
187 [paste.server_runner]
188 paste_server_selector = mediagoblin.app:paste_server_selector
189
72ae87af
CAW
190 [paste.filter_app_factory]
191 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
192
b7e57b1f
WKG
193 [zc.buildout]
194 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
84d4f04e 195
b7e57b1f
WKG
196 [babel.extractors]
197 jinja2 = jinja2.ext:babel_extract
198 """,
b7e57b1f
WKG
199 license='AGPLv3',
200 author='Free Software Foundation and contributors',
201 author_email='cwebber@gnu.org',
202 url="http://mediagoblin.org/",
897354e6 203 long_description=long_description,
a6570fae 204 description='MediaGoblin is a web application for publishing all kinds of media',
b7e57b1f
WKG
205 classifiers=[
206 "Development Status :: 3 - Alpha",
207 "Environment :: Web Environment",
1ac1f00e 208 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
b7e57b1f
WKG
209 "Operating System :: OS Independent",
210 "Programming Language :: Python",
897354e6 211 'Programming Language :: Python :: 2',
3031764d 212 'Programming Language :: Python :: 2.7',
897354e6
BP
213 'Programming Language :: Python :: 3',
214 'Programming Language :: Python :: 3.3',
215 'Programming Language :: Python :: 3.4',
b7e57b1f
WKG
216 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
217 ],
31a8ff42 218 )
897354e6
BP
219except TypeError as e:
220 import sys
221
26990bc0
AL
222 # Check if the problem is caused by the sqlalchemy/setuptools conflict
223 msg_as_str = str(e)
224 if not (msg_as_str == 'dist must be a Distribution instance'):
225 raise
226
227 # If so, tell the user it is OK to just run the script again.
897354e6
BP
228 print("\n\n---------- NOTE ----------", file=sys.stderr)
229 print("The setup.py command you ran failed.\n", file=sys.stderr)
230 print("It is a known possible failure. Just run it again. It works the "
231 "second time.", file=sys.stderr)
26990bc0 232 sys.exit(1)