Removing python 2.6 junk: argparse and a 2.6 classifier
[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
50 install_requires = [
51 'waitress',
52 'alembic==0.6.6',
53 'python-dateutil',
54 'wtforms',
55 'py-bcrypt',
56 'pytest>=2.3.1',
57 'pytest-xdist',
58 'werkzeug>=0.7',
59 'celery>=3.0',
60 'kombu',
61 'jinja2',
62 'Babel>=1.3',
63 'WebTest>=2.0.18',
64 'ConfigObj',
65 'Markdown',
66 'sqlalchemy<1.1.0, >0.9.9',
67 'itsdangerous',
68 'pytz',
69 'sphinx',
70 'six',
71 'oauthlib',
72 'unidecode',
73 'jsonschema',
74 'PasteDeploy',
75 'requests>=2.6.0',
76 'pyld',
77 # This is optional:
78 # 'translitcodec',
79 # For now we're expecting that users will install this from
80 # their package managers.
81 # 'lxml',
82 # 'Pillow',
83 ] + pyversion_install_requires
84
85 dependency_links = []
86 if not PY2:
87 # PyPI version (1.4.2) does not have proper Python 3 support
88 dependency_links.append('https://github.com/ianare/exif-py/zipball/develop#egg=ExifRead-2.0.0')
89 install_requires.append('ExifRead>=2.0.0')
90
91 with open(READMEFILE, encoding="utf-8") as fobj:
92 long_description = fobj.read()
93
94 try:
95 setup(
96 name="mediagoblin",
97 version=get_version(),
98 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
99 zip_safe=False,
100 include_package_data = True,
101 # scripts and dependencies
102 install_requires=install_requires,
103 dependency_links=dependency_links,
104 test_suite='nose.collector',
105 entry_points="""\
106 [console_scripts]
107 gmg = mediagoblin.gmg_commands:main_cli
108
109 [paste.app_factory]
110 app = mediagoblin.app:paste_app_factory
111
112 [paste.server_runner]
113 paste_server_selector = mediagoblin.app:paste_server_selector
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.7',
138 'Programming Language :: Python :: 3',
139 'Programming Language :: Python :: 3.3',
140 'Programming Language :: Python :: 3.4',
141 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
142 ],
143 )
144 except TypeError as e:
145 import sys
146
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.
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)
157 sys.exit(1)