forked from chop-dbhi/varify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (63 loc) · 1.78 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
import sys
from setuptools import setup, find_packages
PACKAGE = 'varify'
VERSION = __import__(PACKAGE).get_version()
install_requires = [
'django>=1.4.11,<1.5',
'markdown==2.1.1',
'south==0.8.2',
'python-memcached==1.48',
'coverage',
'raven>=3.3.9',
'uwsgi',
'rq>=0.3.8',
'django-rq>=0.5.1',
'rq-dashboard>=0.3.1',
'django-rq-dashboard',
'django-widget-tweaks',
'psycopg2==2.4.4',
'avocado>=2.3.3,<3.0',
'serrano>=2.3.4,<3.0',
'modeltree>=1.1.7',
'django-haystack==2.0.0',
'whoosh==2.4.1',
'openpyxl==1.6.1',
'django-objectset>=0.2.2',
'django-siteauth==0.9b1',
'django-registration2==0.9b2',
'django-tracking2==0.1.2',
'django-bootstrap-form>=0.5',
'django-guardian==1.0.4',
'django-sts==0.7.3',
'pycap==0.8.1',
'django-reversion==1.6.6',
'diff-match-patch',
'pyvcf>=0.6.5',
'vdw'
]
if sys.version_info < (2, 7):
install_requires += ['importlib']
kwargs = {
'name': PACKAGE,
'version': VERSION,
'packages': find_packages(exclude=['tests', '*.tests', '*.tests.*',
'tests.*']),
'include_package_data': True,
'install_requires': install_requires,
# This is a hack to get setuptools to install the latest version of the
# varify-data-warehouse from the github repo. Until varify-data-warehouse
# is released on pypi, we need to continue to install from github.
'dependency_links': [
'https://github.com/cbmi/varify-data-warehouse/archive/master.zip#egg=vdw', # noqa
],
'test_suite': 'test_suite',
'tests_require': ['httpretty'],
'author': '',
'author_email': '',
'description': '',
'license': '',
'keywords': '',
'url': '',
'classifiers': [],
}
setup(**kwargs)