-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1006 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
40
41
42
43
[build-system]
requires = ["setuptools>=61","setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "tiscope"
version = "0.0.2"
authors = [
{ name="Yuzhe Li", email="liyuzhezju@gmail.com" },
{ name="Weixi Ning", email="aaronning98@gmail.com" }
]
description = "TISCOPE"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
dependencies = [
"numpy",
"pandas",
"scipy",
"scikit-learn",
"scanpy",
"matplotlib",
"seaborn",
"squidpy",
"bbknn"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "https://github.com/zhangqf-lab/TISCOPE"
"Bug Tracker" = "https://github.com/zhangqf-lab/TISCOPE/issues"