forked from kundajelab/locusselect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 1.02 KB
/
setup.py
File metadata and controls
21 lines (19 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup,find_packages
config = {
'include_package_data': True,
'description': 'Compute deep learning embeddings for narrowPeak files; compute pairwise distance between embeddings and cluster with tSNE',
'download_url': 'https://github.com/kundajelab/locusselect',
'version': '0.3',
'packages': ['locusselect'],
'setup_requires': [],
'install_requires': ['numpy>=1.9', 'keras>=2.2', 'h5py', 'pandas','deeplift'],
'scripts': [],
'entry_points': {'console_scripts': ['compute_nn_embeddings = locusselect.embeddings:main',
'compute_interpretation_scores = locusselect.interpret:main',
'compute_embedding_distances = locusselect.dist:main',
'visualize_embeddings =locusselect.vis:main',
'compute_kmer_embeddings = locusselect.gapped_kmers:main']},
'name': 'locusselect'
}
if __name__== '__main__':
setup(**config)