forked from kundajelab/tfmodisco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 1016 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
from setuptools import find_packages
if __name__== '__main__':
setup(include_package_data=True,
description='TF MOtif Discovery from Importance SCOres',
long_description="""Algorithm for discovering consolidated patterns from base-pair-level importance scores""",
url='https://github.com/kundajelab/tfmodisco',
version='0.5.1.2',
packages=find_packages(),
package_data={
'': ['cluster/phenograph/louvain/*convert*', 'cluster/phenograph/louvain/*community*', 'cluster/phenograph/louvain/*hierarchy*']
},
zip_safe=False,
setup_requires=[],
install_requires=['numpy>=1.9', 'joblib>=0.11',
'scikit-learn>=0.19',
'h5py>=2.5'],
extras_require={
'tensorflow': ['tensorflow>=1.7'],
'tensorflow with gpu': ['tensorflow-gpu>=1.7']},
scripts=[],
name='modisco')