-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 864 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 864 Bytes
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
from setuptools import setup
setup(name='mcspace',
version='1.0.0',
description='MCSPACE model for analyzing MaPS-seq and SAMPL-seq co-localization data',
author='Gary Uppal',
packages=['mcspace'],
install_requires=[
'numpy==1.26.4',
'scikit-learn',
'matplotlib',
'seaborn',
'pandas',
'scipy',
'scikit-learn',
'jupyterlab',
'ipykernel',
'biopython',
'ete3',
'networkx',
'composition-stats',
'statsmodels'
],
entry_points={
'console_scripts': [
'mcspace=mcspace.cli:main'
]
},
python_requires=">=3.8",
)