forked from Scifabric/pybossa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
90 lines (87 loc) · 3.36 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from setuptools import setup, find_packages
requirements = [
"alembic>=0.6.4, <1.0",
"beautifulsoup4>=4.3.2, <5.0",
"blinker>=1.3, <2.0",
"Flask-Babel>=0.9, <0.10",
"Flask-Login", # was pinned to Flask-Login==0.2.3 in the past. GitHub version 3.0+ is used now.
"Flask-Mail>=0.9.0, <1.0",
"misaka>=1.0.0, <2.0.0",
"Flask-Misaka>=0.2.0, <0.4.0",
"Flask-OAuthlib>=0.9.1, <0.9.2",
"Flask-SQLAlchemy>=2.0, <2.1",
"Flask-WTF>=0.9.5, <0.9.6", # was pinned to Flask-WTF==0.9.5
"Flask>=0.10.1, <0.10.2", # was pinned to Flask==0.10.1
"html2text>=2014.4.5, <2014.9.7",
"itsdangerous>=0.24, <1.0",
"M2Crypto>=0.24.0, <0.24.1", # let's be more restrictive on M2Crypto version
"markdown>=2.4, <3.0",
"psycopg2>=2.5.2, <3.0",
"pygeoip>=0.3.1, <1.0",
"python-dateutil>=2.2, <3.0",
"raven>=4.1.1, <5.0",
"pyOpenSSL>=0.15.1, <1.0", # fix for python below 2.7.9
"ndg-httpsclient>=0.4.0, <1.0", # fix for python below 2.7.9
"pyasn1>=0.1.7, <1.0", # fix for python below 2.7.9
"requests>=2.2.1, <3.0",
"SQLAlchemy>=1.0.5, <1.0.6",
"six>=1.9.0, <2.0.0",
"nose",
"rednose",
"redis>=2.9, <2.10",
"sphinx>=1.2.2, <2.0",
"coverage",
"mock",
"pyrax>=1.9.6, <2.0",
"pillow>=3.0, <3.1",
"flask-debugtoolbar>=0.9.0, <1.0",
"factory_boy>=2.4.1, <2.5",
"rq>=0.4.6, <0.5",
"rq-scheduler>=0.5.1, <0.5.2",
"rq-dashboard",
"unidecode>=0.04.16, <0.05",
"mailchimp",
"flask-plugins",
"humanize",
"pbr>=1.0, <2.0", # keep an eye on pbr: https://github.com/rackspace/pyrax/issues/561
"feedparser",
"twitter>=1.17.1, <1.18",
"google-api-python-client>=1.5.0, <1.6.0",
"Flask-Assets",
"jsmin",
"libsass"
]
setup(
name = 'pybossa',
version = '2.2.0',
packages = find_packages(),
install_requires = requirements,
# only needed when installing directly from setup.py (PyPi, eggs?) and pointing to e.g. a git repo.
# Keep in mind that dependency_links are not used when installing with requirements.txt
# and need to be added redundant to requirements.txt in this case!
# Example:
# dependency_links = ['git+https://github.com/Hypernode/M2Crypto#egg=M2Crypto-0.22.dev'],
dependency_links = ['git+https://github.com/maxcountryman/flask-login.git@13af160b3fd14dfb5f35f9cdc3863771efe194eb#egg=Flask-Login',
'git+https://github.com/PyBossa/rq-dashboard.git#egg=rq-dashboard'],
# metadata for upload to PyPI
author = 'SciFabric LTD',
# TODO: change
author_email = '[email protected]',
description = 'Open Source CrowdSourcing framework',
long_description = '''PyBossa is an open source crowdsourcing solution for volunteer computing, thinking and sensing ''',
license = 'AGPLv3',
url = 'http://pybossa.com',
download_url = 'https://github.com/PyBossa/pybossa',
include_package_data = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points = '''
'''
)