Change urllib and urllib import with six.moves.urllib.
[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
cf37fffc
WKG
20import os
21import re
22
897354e6
BP
23import sys
24
25PY2 = sys.version_info[0] == 2 # six is not installed yet
26
cf37fffc
WKG
27READMEFILE = "README"
28VERSIONFILE = os.path.join("mediagoblin", "_version.py")
29VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
30
31
32def get_version():
897354e6
BP
33 with open(VERSIONFILE, "rt") as fobj:
34 verstrline = fobj.read()
cf37fffc
WKG
35 mo = re.search(VSRE, verstrline, re.M)
36 if mo:
37 return mo.group(1)
38 else:
243c3843
NY
39 raise RuntimeError("Unable to find version string in %s." %
40 VERSIONFILE)
cf37fffc 41
897354e6
BP
42py2_only_install_requires = []
43if PY2:
44 py2_only_install_requires.append('argparse') # only for < 2.7
45 py2_only_install_requires.append('PasteScript')
46 # newer sqlalchemy-migrate requires pbr which BREAKS EVERYTHING AND IS
47 # TERRIBLE AND IS THE END OF ALL THINGS
48 # I'd love to remove this restriction.
49 py2_only_install_requires.append('sqlalchemy-migrate<0.8')
50 py2_only_install_requires.append('mock') # mock is in the stdlib for 3.3+
51
52install_requires = [
53 'setuptools', # TODO: is this necessary
54 'python-dateutil',
55 'wtforms',
56 'py-bcrypt',
57 'pytest>=2.3.1',
58 'pytest-xdist',
59 'werkzeug>=0.7',
60 'celery>=3.0',
61 'kombu',
62 'jinja2',
63 'sphinx', # TODO: is this a docs requirement?
03ff865c 64 'Babel<1.0', # TODO: why <1.0 or 0.9.6?
897354e6
BP
65 'webtest<2',
66 'ConfigObj',
67 'Markdown',
68 'sqlalchemy<0.9.0, >0.8.0',
69 'itsdangerous',
70 'pytz',
71 # PLEASE change this when we can; a dependency is forcing us to set this
72 # specific number and it is breaking setup.py develop
73 'six==1.5.2',
74 'oauthlib==0.5.0',
75 'unidecode',
76 'ExifRead',
77 # Annoying. Please remove once we can! We only indirectly
78 # use pbr, and currently it breaks things, presumably till
79 # their next release.
80 'pbr==0.5.22',
03ff865c 81 'PasteDeploy',
897354e6
BP
82 # This is optional:
83 # 'translitcodec',
84 # For now we're expecting that users will install this from
85 # their package managers.
86 # 'lxml',
87 # 'PIL', # TODO: switch to Pillow?
88] + py2_only_install_requires
89
90with open(READMEFILE) as fobj:
91 long_description = fobj.read()
92
26990bc0
AL
93try:
94 setup(
243c3843
NY
95 name="mediagoblin",
96 version=get_version(),
c1b342ba 97 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
31a8ff42 98 zip_safe=False,
d595374d 99 include_package_data = True,
0c04118b 100 # scripts and dependencies
897354e6
BP
101 install_requires=install_requires,
102 test_suite='nose.collector', # TODO: We are using py.test now?
243c3843 103 entry_points="""\
b7e57b1f
WKG
104 [console_scripts]
105 gmg = mediagoblin.gmg_commands:main_cli
fbeeacd7 106 pybabel = mediagoblin.babel.messages.frontend:main
029cad45 107
b7e57b1f
WKG
108 [paste.app_factory]
109 app = mediagoblin.app:paste_app_factory
df0953ce 110
72ae87af
CAW
111 [paste.filter_app_factory]
112 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
113
b7e57b1f
WKG
114 [zc.buildout]
115 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
84d4f04e 116
b7e57b1f
WKG
117 [babel.extractors]
118 jinja2 = jinja2.ext:babel_extract
119 """,
b7e57b1f
WKG
120 license='AGPLv3',
121 author='Free Software Foundation and contributors',
122 author_email='cwebber@gnu.org',
123 url="http://mediagoblin.org/",
124 download_url="http://mediagoblin.org/download/",
897354e6 125 long_description=long_description,
b7e57b1f
WKG
126 classifiers=[
127 "Development Status :: 3 - Alpha",
128 "Environment :: Web Environment",
1ac1f00e 129 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
b7e57b1f
WKG
130 "Operating System :: OS Independent",
131 "Programming Language :: Python",
897354e6 132 'Programming Language :: Python :: 2',
3031764d
WKG
133 'Programming Language :: Python :: 2.6',
134 'Programming Language :: Python :: 2.7',
897354e6
BP
135 'Programming Language :: Python :: 3',
136 'Programming Language :: Python :: 3.3',
137 'Programming Language :: Python :: 3.4',
b7e57b1f
WKG
138 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
139 ],
31a8ff42 140 )
897354e6
BP
141except TypeError as e:
142 import sys
143
26990bc0
AL
144 # Check if the problem is caused by the sqlalchemy/setuptools conflict
145 msg_as_str = str(e)
146 if not (msg_as_str == 'dist must be a Distribution instance'):
147 raise
148
149 # If so, tell the user it is OK to just run the script again.
897354e6
BP
150 print("\n\n---------- NOTE ----------", file=sys.stderr)
151 print("The setup.py command you ran failed.\n", file=sys.stderr)
152 print("It is a known possible failure. Just run it again. It works the "
153 "second time.", file=sys.stderr)
26990bc0 154 sys.exit(1)