1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
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.
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.
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/>.
17 from __future__
import print_function
19 from setuptools
import setup
, find_packages
26 PY2
= sys
.version_info
[0] == 2 # six is not installed yet
29 VERSIONFILE
= os
.path
.join("mediagoblin", "_version.py")
30 VSRE
= r
"^__version__ = ['\"]([^
'\"]*)['\"]"
34 with open(VERSIONFILE, "rt
") as fobj:
35 verstrline = fobj.read()
36 mo = re.search(VSRE, verstrline, re.M)
40 raise RuntimeError("Unable to find version string
in %s." %
43 pyversion_install_requires = []
45 pyversion_install_requires.append('argparse') # only for < 2.7
46 pyversion_install_requires.append('PasteScript')
47 # newer sqlalchemy-migrate requires pbr which BREAKS EVERYTHING AND IS
48 # TERRIBLE AND IS THE END OF ALL THINGS
49 # I'd love to remove this restriction.
50 pyversion_install_requires.append('sqlalchemy-migrate<0.8')
51 # # Annoying. Please remove once we can! We only indirectly
52 # # use pbr, and currently it breaks things, presumably till
53 # # their next release.
54 # pyversion_install_requires.append('pbr==0.5.22')
55 pyversion_install_requires.append('mock==1.0.1') # mock is in the stdlib for 3.3+
56 # PyPI version (1.4.2) does not have proper Python 3 support
57 pyversion_install_requires.append('ExifRead')
58 pyversion_install_requires.append('PasteScript')
59 # Paste 2.0 is breaking wsgi, see:
60 # https://bitbucket.org/ianb/paste/issue/4/wsgi-environ-totally-borked
61 pyversion_install_requires.append('Paste')
63 pyversion_install_requires.append('gunicorn')
80 'sqlalchemy<0.9.0, >0.8.0',
93 # For now we're expecting that users will install this from
94 # their package managers.
97 ] + pyversion_install_requires
101 # PyPI version (1.4.2) does not have proper Python 3 support
102 dependency_links.append('https://github.com/ianare/exif-py/zipball/develop#egg=ExifRead-2.0.0')
103 install_requires.append('ExifRead>=2.0.0')
105 with open(READMEFILE, encoding="utf
-8") as fobj:
106 long_description = fobj.read()
111 version=get_version(),
112 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
114 include_package_data = True,
115 # scripts and dependencies
116 install_requires=install_requires,
117 dependency_links=dependency_links,
118 test_suite='nose.collector',
121 gmg = mediagoblin.gmg_commands:main_cli
124 app = mediagoblin.app:paste_app_factory
126 [paste.server_runner]
127 paste_server_selector = mediagoblin.app:paste_server_selector
129 [paste.filter_app_factory]
130 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
133 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
136 jinja2 = jinja2.ext:babel_extract
139 author='Free Software Foundation and contributors',
140 author_email='cwebber@gnu.org',
141 url="http
://mediagoblin
.org
/",
142 long_description=long_description,
143 description='MediaGoblin is a web application for publishing all kinds of media',
145 "Development Status
:: 3 - Alpha
",
146 "Environment
:: Web Environment
",
147 "License
:: OSI Approved
:: GNU Affero General Public License v3
or later (AGPLv3
+)",
148 "Operating System
:: OS Independent
",
149 "Programming Language
:: Python
",
150 'Programming Language :: Python :: 2',
151 'Programming Language :: Python :: 2.6',
152 'Programming Language :: Python :: 2.7',
153 'Programming Language :: Python :: 3',
154 'Programming Language :: Python :: 3.3',
155 'Programming Language :: Python :: 3.4',
156 "Topic
:: Internet
:: WWW
/HTTP
:: Dynamic Content
"
159 except TypeError as e:
162 # Check if the problem is caused by the sqlalchemy/setuptools conflict
164 if not (msg_as_str == 'dist must be a Distribution instance'):
167 # If so, tell the user it is OK to just run the script again.
168 print("\n\n---------- NOTE
----------", file=sys.stderr)
169 print("The setup
.py command you ran failed
.\n", file=sys.stderr)
170 print("It
is a known possible failure
. Just run it again
. It works the
"
171 "second time
.", file=sys.stderr)