forked from uc-cdis/indexd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (29 loc) · 840 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='indexd',
version='0.1',
packages=find_packages(),
package_data={
'index': [
'schemas/*',
]
},
install_requires=[
'flask==0.12.4',
'jsonschema==2.5.1',
'sqlalchemy==1.0.8',
'sqlalchemy-utils>=0.32.21',
'psycopg2>=2.7',
'future>=0.16.0,<1.0.0',
'cdislogging',
'indexclient',
'doiclient',
'dosclient',
],
dependency_links=[
"git+https://github.com/uc-cdis/[email protected]#egg=cdislogging",
"git+https://github.com/uc-cdis/[email protected]#egg=indexclient",
"git+https://github.com/uc-cdis/[email protected]#egg=doiclient",
"git+https://github.com/uc-cdis/[email protected]#egg=dosclient",
],
)