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