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+
73 'sqlalchemy<0.9.0, >0.8.0',
76 # PLEASE change this when we can; a dependency is forcing us to set this
77 # specific number and it is breaking setup.py develop
82 'ExifRead', # TODO(berker): Install develop branch for Python 3
88 # For now we're expecting that users will install this from
89 # their package managers.
92 ] + py2_only_install_requires
94 with open(READMEFILE, encoding="utf
-8") as fobj:
95 long_description = fobj.read()
100 version=get_version(),
101 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
103 include_package_data = True,
104 # scripts and dependencies
105 install_requires=install_requires,
106 test_suite='nose.collector',
109 gmg = mediagoblin.gmg_commands:main_cli
110 pybabel = mediagoblin.babel.messages.frontend:main
113 app = mediagoblin.app:paste_app_factory
115 [paste.filter_app_factory]
116 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
119 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
122 jinja2 = jinja2.ext:babel_extract
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',
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.6',
138 'Programming Language :: Python :: 2.7',
139 'Programming Language :: Python :: 3',
140 'Programming Language :: Python :: 3.3',
141 'Programming Language :: Python :: 3.4',
142 "Topic
:: Internet
:: WWW
/HTTP
:: Dynamic Content
"
145 except TypeError as e:
148 # Check if the problem is caused by the sqlalchemy/setuptools conflict
150 if not (msg_as_str == 'dist must be a Distribution instance'):
153 # If so, tell the user it is OK to just run the script again.
154 print("\n\n---------- NOTE
----------", file=sys.stderr)
155 print("The setup
.py command you ran failed
.\n", file=sys.stderr)
156 print("It
is a known possible failure
. Just run it again
. It works the
"
157 "second time
.", file=sys.stderr)