-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·36 lines (35 loc) · 1.23 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
setuptools.setup(
name="SpaGFT",
version="0.1.2",
author="Jixin Liu, Yi Jiang",
packages=['SpaGFT'],
author_email="[email protected]",
description='''SpaGFT is a python package to analyze spatial transcriptomcs data''',
url="https://github.com/jxLiu-bio/SpaGFT",
project_urls={
"Bug Tracker": "https://github.com/jxLiu-bio/SpaGFT/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=["kneed==0.7.0",
"louvain==0.7.1",
"leidenalg==0.8.10",
"matplotlib==3.5.2",
"networkx==2.8",
"numba==0.55.1",
"numpy==1.21.5",
"pandas==1.4.2",
"plotnine==0.8.0",
"scanpy==1.9.1",
"scikit-learn==1.0.2",
"scipy==1.8.0",
"gseapy==0.10.8",
"igraph==0.9.10",
"chardet==5.1.0",
"charset-normalizer==3.1.0"]
)