-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 933 Bytes
/
setup.py
File metadata and controls
39 lines (34 loc) · 933 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
31
32
33
34
35
36
37
38
39
# Copyright (C) 2024 Zeyu Chen, G-Lab, Tsinghua University
from setuptools import setup, find_packages
import os
os.chdir(os.path.dirname(os.path.abspath(__file__)))
print(os.getcwd())
with open("README.md", "r") as fh:
description = fh.read()
setup(
name="scTrace",
version="0.1.6",
author="Zeyu Chen",
author_email="chenzy22@mails.tsinghua.edu.cn",
packages=find_packages(),
description="scTrace+: enhance the cell fate inference by integrating the lineage-tracing and multi-faceted transcriptomic similarity information",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/czythu/scTrace",
license='MIT',
python_requires='>=3.7',
install_requires=[
"numpy",
"pandas",
"scipy",
"scikit-learn",
"seaborn",
"matplotlib",
"scanpy",
"leidenalg",
"pyro-ppl",
"POT",
"node2vec",
"scStateDynamics"
]
)