Also remove the include directory
[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
0c32c7fe 20from io import open
cf37fffc
WKG
21import os
22import re
23
897354e6
BP
24import sys
25
26PY2 = sys.version_info[0] == 2 # six is not installed yet
27
cf37fffc
WKG
28READMEFILE = "README"
29VERSIONFILE = os.path.join("mediagoblin", "_version.py")
30VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
31
32
33def get_version():
897354e6
BP
34 with open(VERSIONFILE, "rt") as fobj:
35 verstrline = fobj.read()
cf37fffc
WKG
36 mo = re.search(VSRE, verstrline, re.M)
37 if mo:
38 return mo.group(1)
39 else:
243c3843
NY
40 raise RuntimeError("Unable to find version string in %s." %
41 VERSIONFILE)
cf37fffc 42
897354e6
BP
43py2_only_install_requires = []
44if PY2:
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')
f6bad0eb
CAW
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')
897354e6 55 py2_only_install_requires.append('mock') # mock is in the stdlib for 3.3+
ab46e89a
BP
56 # PyPI version (1.4.2) does not have proper Python 3 support
57 py2_only_install_requires.append('ExifRead')
897354e6
BP
58
59install_requires = [
3c06c3ef 60 'gunicorn',
65f20ca4 61 'alembic==0.6.6',
897354e6
BP
62 'python-dateutil',
63 'wtforms',
64 'py-bcrypt',
65 'pytest>=2.3.1',
66 'pytest-xdist',
67 'werkzeug>=0.7',
68 'celery>=3.0',
69 'kombu',
70 'jinja2',
173099ad 71 'Babel>=1.3',
897354e6
BP
72 'webtest<2',
73 'ConfigObj',
74 'Markdown',
75 'sqlalchemy<0.9.0, >0.8.0',
76 'itsdangerous',
77 'pytz',
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
80 'six==1.5.2',
f6bad0eb 81 'oauthlib',
897354e6 82 'unidecode',
f6bad0eb 83 'jsonschema',
03ff865c 84 'PasteDeploy',
f6bad0eb
CAW
85 'requests',
86 'pyld',
897354e6
BP
87 # This is optional:
88 # 'translitcodec',
89 # For now we're expecting that users will install this from
90 # their package managers.
91 # 'lxml',
173099ad 92 # 'Pillow',
897354e6
BP
93] + py2_only_install_requires
94
ab46e89a
BP
95dependency_links = []
96if not PY2:
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')
100
9156ab68 101with open(READMEFILE, encoding="utf-8") as fobj:
897354e6
BP
102 long_description = fobj.read()
103
26990bc0
AL
104try:
105 setup(
243c3843
NY
106 name="mediagoblin",
107 version=get_version(),
c1b342ba 108 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
31a8ff42 109 zip_safe=False,
d595374d 110 include_package_data = True,
0c04118b 111 # scripts and dependencies
897354e6 112 install_requires=install_requires,
ab46e89a 113 dependency_links=dependency_links,
4b5f4e87 114 test_suite='nose.collector',
243c3843 115 entry_points="""\
b7e57b1f
WKG
116 [console_scripts]
117 gmg = mediagoblin.gmg_commands:main_cli
fbeeacd7 118 pybabel = mediagoblin.babel.messages.frontend:main
029cad45 119
b7e57b1f
WKG
120 [paste.app_factory]
121 app = mediagoblin.app:paste_app_factory
df0953ce 122
72ae87af
CAW
123 [paste.filter_app_factory]
124 errors = mediagoblin.errormiddleware:mgoblin_error_middleware
125
b7e57b1f
WKG
126 [zc.buildout]
127 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
84d4f04e 128
b7e57b1f
WKG
129 [babel.extractors]
130 jinja2 = jinja2.ext:babel_extract
131 """,
b7e57b1f
WKG
132 license='AGPLv3',
133 author='Free Software Foundation and contributors',
134 author_email='cwebber@gnu.org',
135 url="http://mediagoblin.org/",
897354e6 136 long_description=long_description,
a6570fae 137 description='MediaGoblin is a web application for publishing all kinds of media',
b7e57b1f
WKG
138 classifiers=[
139 "Development Status :: 3 - Alpha",
140 "Environment :: Web Environment",
1ac1f00e 141 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
b7e57b1f
WKG
142 "Operating System :: OS Independent",
143 "Programming Language :: Python",
897354e6 144 'Programming Language :: Python :: 2',
3031764d
WKG
145 'Programming Language :: Python :: 2.6',
146 'Programming Language :: Python :: 2.7',
897354e6
BP
147 'Programming Language :: Python :: 3',
148 'Programming Language :: Python :: 3.3',
149 'Programming Language :: Python :: 3.4',
b7e57b1f
WKG
150 "Topic :: Internet :: WWW/HTTP :: Dynamic Content"
151 ],
31a8ff42 152 )
897354e6
BP
153except TypeError as e:
154 import sys
155
26990bc0
AL
156 # Check if the problem is caused by the sqlalchemy/setuptools conflict
157 msg_as_str = str(e)
158 if not (msg_as_str == 'dist must be a Distribution instance'):
159 raise
160
161 # If so, tell the user it is OK to just run the script again.
897354e6
BP
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)
26990bc0 166 sys.exit(1)