-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 912 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
#!/usr/bin/env python
r"""
Shim setup.py
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setuptools.setup(
name="scltnn",
version='0.1.0',
packages=setuptools.find_packages(),
author='starlitnightly',
author_email='[email protected]',
description='A library to calculate the latent time of scRNA-seq',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Starlitnightly/scltnn", # 模块github地址
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",],
install_requires=[
'scanpy >=1.9',
'numpy >=1.22',
'pandas >=1.4',
'distfit',
],
python_requires='>=3.8',
)