Review and update the deploment docs for Debian 10 and CentOS 8 [#5593].
[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('sqlalchemy-migrate>=0.9.6')
46 pyversion_install_requires.append('mock==1.0.1') # mock is in the stdlib for 3.3+
47 # PyPI version (1.4.2) does not have proper Python 3 support
48 pyversion_install_requires.append('ExifRead')
49 pyversion_install_requires.append('Markdown<3.2')
50 pyversion_install_requires.append('billiard<3.6.0,>=3.5.0.2')
51
52 install_requires = [
53 'waitress',
54 'alembic>=0.7.5',
55 'python-dateutil',
56 'wtforms',
57 'py-bcrypt',
58 'pytest>=2.3.1',
59 'pytest-xdist',
60 'werkzeug>=0.7,<1.0.0',
61 # Celery 4.3.0 drops the "sqlite" transport alias making our tests fail.
62 'celery>=3.0,<4.3.0',
63 # Jinja2 3.0.0 uses f-strings (Python 3.7 and above) but `pip install` on
64 # Debian 9 doesn't seem to respect Jinja2's 'python_requires=">=3.6"' line.
65 'jinja2<3.0.0',
66 'Babel>=1.3',
67 'WebTest>=2.0.18',
68 'ConfigObj',
69 'Markdown',
70 'sqlalchemy',
71 'itsdangerous',
72 'pytz',
73 'sphinx',
74 'six>=1.11.0',
75 'oauthlib',
76 'unidecode',
77 'jsonschema',
78 'PasteDeploy',
79 'PasteScript',
80 'requests>=2.6.0',
81 'PyLD<2.0.0', # Python 2, but also breaks a Python 3 test if >= 2.0.0.
82 'ExifRead>=2.0.0',
83 'email-validator', # Seems that WTForms must have dropped this.
84 # This is optional:
85 # 'translitcodec',
86 # For now we're expecting that users will install this from
87 # their package managers.
88 # 'lxml',
89 # 'Pillow',
90 ] + pyversion_install_requires
91
92 if not PY2:
93 # PyPI version (1.4.2) does not have proper Python 3 support
94 install_requires.append('ExifRead>=2.0.0')
95
96 with open(READMEFILE, encoding="utf-8") as fobj:
97 long_description = fobj.read()
98
99 try:
100 setup(
101 name="mediagoblin",
102 version=get_version(),
103 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
104 zip_safe=False,
105 include_package_data = True,
106 # scripts and dependencies
107 install_requires=install_requires,
108 test_suite='nose.collector',
109 entry_points="""\
110 [console_scripts]
111 gmg = mediagoblin.gmg_commands:main_cli
112
113 [paste.app_factory]
114 app = mediagoblin.app:paste_app_factory
115
116 [paste.server_runner]
117 paste_server_selector = mediagoblin.app:paste_server_selector
118
119 [paste.filter_app_factory]
120 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
121
122 [zc.buildout]
123 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
124
125 [babel.extractors]
126 jinja2 = jinja2.ext:babel_extract
127 """,
128 license='AGPLv3',
129 author='Free Software Foundation and contributors',
130 author_email='cwebber@gnu.org',
131 url="http://mediagoblin.org/",
132 long_description=long_description,
133 description='MediaGoblin is a web application for publishing all kinds of media',
134 classifiers=[
135 "Development Status :: 3 - Alpha",
136 "Environment :: Web Environment",
137 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
138 "Operating System :: OS Independent",
139 "Programming Language :: Python",
140 'Programming Language :: Python :: 2',
141 'Programming Language :: Python :: 2.7',
142 'Programming Language :: Python :: 3',
143 'Programming Language :: Python :: 3.3',
144 'Programming Language :: Python :: 3.4',
145 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
146 ],
147 )
148 except TypeError as e:
149 import sys
150
151 # Check if the problem is caused by the sqlalchemy/setuptools conflict
152 msg_as_str = str(e)
153 if not (msg_as_str == 'dist must be a Distribution instance'):
154 raise
155
156 # If so, tell the user it is OK to just run the script again.
157 print("\n\n---------- NOTE ----------", file=sys.stderr)
158 print("The setup.py command you ran failed.\n", file=sys.stderr)
159 print("It is a known possible failure. Just run it again. It works the "
160 "second time.", file=sys.stderr)
161 sys.exit(1)