-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 828 Bytes
/
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
# Copyright (C) 2023 Wenbo Guo, G-Lab, Tsinghua University
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
description = fh.read()
setup(
name="scStateDynamics",
version="0.0.21",
author="Wenbo Guo",
author_email="[email protected]",
packages=find_packages(),
description="A package to decipher the drug-responsive tumor cell state dynamics by modeling single-cell level expression changes",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/wguo-research/scStateDynamics",
license='MIT',
python_requires='>=3.7',
install_requires=[
"numpy",
"pandas",
"scipy",
"scikit-learn",
"torch",
"seaborn",
"matplotlib",
"scanpy",
"leidenalg",
"pyro-ppl",
"POT"]
)