forked from kundajelab/dragonn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (18 loc) · 860 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
config = {
'include_package_data': True,
'description': 'Deep RegulAtory GenOmic Neural Networks (DragoNN)',
'download_url': 'https://github.com/kundajelab/dragonn',
'version': '0.1.3',
'packages': ['dragonn'],
'setup_requires': [],
'install_requires': ['numpy>=1.9', 'keras==0.3.3', 'deeplift==0.5.1-theano', 'shapely', 'simdna==0.3', 'matplotlib<=1.5.3',
'scikit-learn', 'pydot_ng==1.0.0', 'h5py'],
'dependency_links': ["https://github.com/kundajelab/deeplift/tarball/v0.5.1-theano#egg=deeplift-0.5.1-theano",
"https://github.com/kundajelab/simdna/tarball/0.3#egg=simdna-0.3"],
'scripts': [],
'entry_points': {'console_scripts': ['dragonn = dragonn.__main__:main']},
'name': 'dragonn'
}
if __name__== '__main__':
setup(**config)