-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
31 lines (31 loc) · 1.46 KB
/
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
31
from setuptools import setup
with open('README.md','r', encoding='utf-8') as f:
long_description = f.read()
setup(name='methylnet',
version='0.1.3',
description='A modular deep learning approach for Methylation Predictions.',
url='https://github.com/Christensen-Lab-Dartmouth/MethylNet',
author='Joshua Levy',
author_email='[email protected]',
license='MIT',
scripts=['bin/install_methylnet_dependencies','bin/download_help_data'],
entry_points={
'console_scripts':['methylnet-embed=methylnet.embedding:embed',
'methylnet-predict=methylnet.predictions:prediction',
'methylnet-interpret=methylnet.model_interpretability:interpret',
'methylnet-visualize=methylnet.visualizations:visualize',
'methylnet-torque=methylnet.torque_job_runner:torque',
'methylnet-test=methylnet.test_pipeline:test']
},
long_description=long_description,
long_description_content_type='text/markdown',
packages=['methylnet'],
install_requires=['pymethylprocess>=0.1.5',
'ruamel.yaml',
#'modin',
'torch',
'statsmodels',
'mlxtend',
'dask',
'networkx',
'submit_hpc'])