-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 1.08 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
import setuptools
def get_readme():
with open("README.md", "rt", encoding="utf-8") as fh:
return fh.read()
setuptools.setup(
name='sctour',
version='1.0.0',
author='Qian Li',
author_email='[email protected]',
description='a deep learning architecture for robust inference and accurate prediction of cellular dynamics',
long_description=get_readme(),
long_description_content_type="text/markdown",
url='https://github.com/LiQian-XC/sctour',
packages=setuptools.find_packages(),
install_requires=[
'torch>=1.9.1',
'torchdiffeq>=0.2.2',
'numpy>=1.19.2',
'scanpy>=1.7.1',
'anndata>=0.7.5',
'scipy>=1.5.2',
'tqdm>=4.32.2',
'scikit-learn>=0.24.1',
'leidenalg>=0.8.4',
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 4 - Beta",
],
python_requires='>=3.7',
)