-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (35 loc) · 1.19 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
37
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="sctreeshap",
version="0.7.6.2",
author="Haoxuan Xie",
author_email="[email protected]",
url="https://github.com/ForwardStar/sctreeshap",
py_modules=["sctreeshap"],
description="sctreeshap: a cluster tree data structure, and for shap analysis",
long_description=long_description,
long_description_content_type="text/markdown",
license="LICENSE",
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['shap>=0.39.0',
'matplotlib>=3.4.2',
'anndata>=0.7.6',
'numpy>=1.19.5',
'pandas>=1.2.4',
'scikit-learn>=0.24.2',
'imblearn>=0.0',
'imbalanced-learn>=0.8.0',
'xgboost>=1.4.2',
'loompy>=3.0.6',
'tqdm>=4.61.2',
'requests>=2.26.0',
'pathlib2>=2.0',
'pip>=21.1.3'],
python_requires='>=3.8'
)