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 py2_only_install_requires = []
45 py2_only_install_requires.append('argparse') # only for < 2.7
46 py2_only_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 py2_only_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 # py2_only_install_requires.append('pbr==0.5.22')
55 py2_only_install_requires.append('mock') # mock is in the stdlib for 3.3+
56 # PyPI version (1.4.2) does not have proper Python 3 support
57 py2_only_install_requires.append('ExifRead')
75 'sqlalchemy<0.9.0, >0.8.0',
78 # PLEASE change this when we can; a dependency is forcing us to set this
79 # specific number and it is breaking setup.py develop
89 # For now we're expecting that users will install this from
90 # their package managers.
93 ] + py2_only_install_requires
97 # PyPI version (1.4.2) does not have proper Python 3 support
98 dependency_links.append('https://github.com/ianare/exif-py/zipball/develop#egg=ExifRead-2.0.0')
99 install_requires.append('ExifRead>=2.0.0')
101 with open(READMEFILE, encoding="utf
-8") as fobj:
102 long_description = fobj.read()
107 version=get_version(),
108 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
110 include_package_data = True,
111 # scripts and dependencies
112 install_requires=install_requires,
113 dependency_links=dependency_links,
114 test_suite='nose.collector',
117 gmg = mediagoblin.gmg_commands:main_cli
118 pybabel = mediagoblin.babel.messages.frontend:main
121 app = mediagoblin.app:paste_app_factory
123 [paste.filter_app_factory]
124 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
127 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
130 jinja2 = jinja2.ext:babel_extract
133 author='Free Software Foundation and contributors',
134 author_email='cwebber@gnu.org',
135 url="http
://mediagoblin
.org
/",
136 long_description=long_description,
137 description='MediaGoblin is a web application for publishing all kinds of media',
139 "Development Status
:: 3 - Alpha
",
140 "Environment
:: Web Environment
",
141 "License
:: OSI Approved
:: GNU Affero General Public License v3
or later (AGPLv3
+)",
142 "Operating System
:: OS Independent
",
143 "Programming Language
:: Python
",
144 'Programming Language :: Python :: 2',
145 'Programming Language :: Python :: 2.6',
146 'Programming Language :: Python :: 2.7',
147 'Programming Language :: Python :: 3',
148 'Programming Language :: Python :: 3.3',
149 'Programming Language :: Python :: 3.4',
150 "Topic
:: Internet
:: WWW
/HTTP
:: Dynamic Content
"
153 except TypeError as e:
156 # Check if the problem is caused by the sqlalchemy/setuptools conflict
158 if not (msg_as_str == 'dist must be a Distribution instance'):
161 # If so, tell the user it is OK to just run the script again.
162 print("\n\n---------- NOTE
----------", file=sys.stderr)
163 print("The setup
.py command you ran failed
.\n", file=sys.stderr)
164 print("It
is a known possible failure
. Just run it again
. It works the
"
165 "second time
.", file=sys.stderr)