Fix "KeyError: 'No such transport: sqlite. Did you mean sqla?'" in tests.
[mediagoblin.git] / setup.py
... / ...
CommitLineData
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
17from __future__ import print_function
18
19from setuptools import setup, find_packages
20from io import open
21import os
22import re
23
24import sys
25
26PY2 = sys.version_info[0] == 2 # six is not installed yet
27
28READMEFILE = "README"
29VERSIONFILE = os.path.join("mediagoblin", "_version.py")
30VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
31
32
33def 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
43pyversion_install_requires = []
44if 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
50install_requires = [
51 'waitress',
52 'alembic>=0.7.5',
53 'python-dateutil',
54 'wtforms',
55 'py-bcrypt',
56 'pytest>=2.3.1',
57 'pytest-xdist',
58 'werkzeug>=0.7,<1.0.0',
59 # Celery 4.3.0 drops the "sqlite" transport alias making our tests fail.
60 'celery>=3.0,<4.3.0',
61 # Jinja2 3.0.0 uses f-strings (Python 3.7 and above) but `pip install` on
62 # Debian 9 doesn't seem to respect Jinja2's 'python_requires=">=3.6"' line.
63 'jinja2<3.0.0',
64 'Babel>=1.3',
65 'WebTest>=2.0.18',
66 'ConfigObj',
67 'Markdown',
68 'sqlalchemy',
69 'itsdangerous',
70 'pytz',
71 'sphinx',
72 'six>=1.11.0',
73 'oauthlib',
74 'unidecode',
75 'jsonschema',
76 'PasteDeploy',
77 'PasteScript',
78 'requests>=2.6.0',
79 'pyld',
80 'ExifRead>=2.0.0'
81 # This is optional:
82 # 'translitcodec',
83 # For now we're expecting that users will install this from
84 # their package managers.
85 # 'lxml',
86 # 'Pillow',
87] + pyversion_install_requires
88
89if not PY2:
90 # PyPI version (1.4.2) does not have proper Python 3 support
91 install_requires.append('ExifRead>=2.0.0')
92
93with open(READMEFILE, encoding="utf-8") as fobj:
94 long_description = fobj.read()
95
96try:
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',
106 entry_points="""\
107 [console_scripts]
108 gmg = mediagoblin.gmg_commands:main_cli
109
110 [paste.app_factory]
111 app = mediagoblin.app:paste_app_factory
112
113 [paste.server_runner]
114 paste_server_selector = mediagoblin.app:paste_server_selector
115
116 [paste.filter_app_factory]
117 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
118
119 [zc.buildout]
120 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
121
122 [babel.extractors]
123 jinja2 = jinja2.ext:babel_extract
124 """,
125 license='AGPLv3',
126 author='Free Software Foundation and contributors',
127 author_email='cwebber@gnu.org',
128 url="http://mediagoblin.org/",
129 long_description=long_description,
130 description='MediaGoblin is a web application for publishing all kinds of media',
131 classifiers=[
132 "Development Status :: 3 - Alpha",
133 "Environment :: Web Environment",
134 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
135 "Operating System :: OS Independent",
136 "Programming Language :: Python",
137 'Programming Language :: Python :: 2',
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 )
145except 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)