-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
40 lines (40 loc) · 1.86 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
32
33
34
35
36
37
38
39
40
from setuptools import setup
with open('README.md','r', encoding='utf-8') as f:
long_description = f.read()
setup(name='pymethylprocess',
version='0.1.6',
description='Preprocessing methylation pipeline, written in python. Easy to use and highly parallelized.',
url='https://github.com/Christensen-Lab-Dartmouth/PyMethylProcess',
author='Joshua Levy',
author_email='[email protected]',
license='MIT',
scripts=['bin/run_parallel','bin/pymethyl-install_r_dependencies'],
entry_points={
'console_scripts':['pymethyl-basic-install=pymethylprocess.basic_installer:main',
'pymethyl-install=pymethylprocess.installer:install',
'pymethyl-visualize=pymethylprocess.visualizations:visualize',
'pymethyl-preprocess=pymethylprocess.preprocess:preprocess',
'pymethyl-utils=pymethylprocess.utils:util',
'pymethyl-basic-ml=pymethylprocess.run_rand_forest:main']
},
long_description=long_description,
long_description_content_type='text/markdown',
packages=['pymethylprocess'],
install_requires=['rpy2==2.9.4',
'numpy',
'kneed',
'Cython',
'pathos',
'nevergrad',
'umap-learn>=0.3.7',
'plotly>=3.4.2',
'fancyimpute>=0.4.2',
'pandas>=0.23.4',
'scikit-learn>=0.20.1',
'shap',
'matplotlib',
'seaborn',
'mlxtend',
'click==6.7',
'networkx',
'cvxpy==1.0.25'])