forked from kundajelab/dragonn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 839 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 839 Bytes
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.3', 'shapely', 'simdna==0.2', 'matplotlib<=1.5.3',
'scikit-learn', 'pydot_ng==1.0.0', 'h5py'],
'dependency_links': ["https://github.com/kundajelab/deeplift/tarball/v0.3-alpha#egg=deeplift-0.3",
"https://github.com/kundajelab/simdna/tarball/0.2#egg=simdna-0.2"],
'scripts': [],
'entry_points': {'console_scripts': ['dragonn = dragonn.__main__:main']},
'name': 'dragonn'
}
if __name__== '__main__':
setup(**config)