Remove "git submodule init && git submodule update" from Dockerfiles.
[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:
7c1287b6 45 pyversion_install_requires.append('sqlalchemy-migrate>=0.9.6')
e340879d 46 pyversion_install_requires.append('mock==1.0.1') # mock is in the stdlib for 3.3+
ab46e89a 47 # PyPI version (1.4.2) does not have proper Python 3 support
2e2a1aec 48 pyversion_install_requires.append('ExifRead')
897354e6
BP
49
50install_requires = [
d61778a4 51 'waitress',
af6b89ea 52 'alembic>=0.7.5',
897354e6
BP
53 'python-dateutil',
54 'wtforms',
55 'py-bcrypt',
56 'pytest>=2.3.1',
57 'pytest-xdist',
5c779069 58 'werkzeug>=0.7,<1.0.0',
00d0bb71 59 'celery>=3.0',
72047cbe
BS
60 # Jinja2 3.0.0 uses f-strings (Python 3.7 and above) but `pip install` on
61 # Debian 9 doesn't seem to respect Jinja2's 'python_requires=">=3.6"' line.
62 'jinja2<3.0.0',
173099ad 63 'Babel>=1.3',
6557bab6 64 'WebTest>=2.0.18',
897354e6
BP
65 'ConfigObj',
66 'Markdown',
f1e79d68 67 'sqlalchemy',
897354e6
BP
68 'itsdangerous',
69 'pytz',
09e2db30 70 'sphinx',
09cd88b0 71 'six>=1.11.0',
f6bad0eb 72 'oauthlib',
897354e6 73 'unidecode',
f6bad0eb 74 'jsonschema',
03ff865c 75 'PasteDeploy',
062e3789 76 'PasteScript',
3252f738 77 'requests>=2.6.0',
f6bad0eb 78 'pyld',
411ae185 79 'ExifRead>=2.0.0'
897354e6
BP
80 # This is optional:
81 # 'translitcodec',
82 # For now we're expecting that users will install this from
83 # their package managers.
84 # 'lxml',
173099ad 85 # 'Pillow',
2e2a1aec 86] + pyversion_install_requires
897354e6 87
ab46e89a
BP
88if not PY2:
89 # PyPI version (1.4.2) does not have proper Python 3 support
ab46e89a
BP
90 install_requires.append('ExifRead>=2.0.0')
91
9156ab68 92with open(READMEFILE, encoding="utf-8") as fobj:
897354e6
BP
93 long_description = fobj.read()
94
26990bc0
AL
95try:
96 setup(
243c3843
NY
97 name="mediagoblin",
98 version=get_version(),
c1b342ba 99 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
31a8ff42 100 zip_safe=False,
d595374d 101 include_package_data = True,
0c04118b 102 # scripts and dependencies
897354e6 103 install_requires=install_requires,
4b5f4e87 104 test_suite='nose.collector',
243c3843 105 entry_points="""\
b7e57b1f
WKG
106 [console_scripts]
107 gmg = mediagoblin.gmg_commands:main_cli
029cad45 108
b7e57b1f
WKG
109 [paste.app_factory]
110 app = mediagoblin.app:paste_app_factory
df0953ce 111
227a81b5
CAW
112 [paste.server_runner]
113 paste_server_selector = mediagoblin.app:paste_server_selector
114
72ae87af
CAW
115 [paste.filter_app_factory]
116 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
117
b7e57b1f
WKG
118 [zc.buildout]
119 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
84d4f04e 120
b7e57b1f
WKG
121 [babel.extractors]
122 jinja2 = jinja2.ext:babel_extract
123 """,
b7e57b1f
WKG
124 license='AGPLv3',
125 author='Free Software Foundation and contributors',
126 author_email='cwebber@gnu.org',
127 url="http://mediagoblin.org/",
897354e6 128 long_description=long_description,
a6570fae 129 description='MediaGoblin is a web application for publishing all kinds of media',
b7e57b1f
WKG
130 classifiers=[
131 "Development Status :: 3 - Alpha",
132 "Environment :: Web Environment",
1ac1f00e 133 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
b7e57b1f
WKG
134 "Operating System :: OS Independent",
135 "Programming Language :: Python",
897354e6 136 'Programming Language :: Python :: 2',
3031764d 137 'Programming Language :: Python :: 2.7',
897354e6
BP
138 'Programming Language :: Python :: 3',
139 'Programming Language :: Python :: 3.3',
140 'Programming Language :: Python :: 3.4',
b7e57b1f
WKG
141 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
142 ],
31a8ff42 143 )
897354e6
BP
144except TypeError as e:
145 import sys
146
26990bc0
AL
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.
897354e6
BP
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)
26990bc0 157 sys.exit(1)