-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 912 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 912 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "scRegulate"
dynamic = ["version"]
description = "Python Toolkit for Transcription Factor Activity Inference and Clustering of scRNA-seq Data"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "Mehrdad Zandigohar", email = "mehr.zgohar@gmail.com"},
]
dependencies = [
"torch>=2.0",
"numpy>=1.23",
"scanpy>=1.9",
"anndata>=0.8"
]
[project.urls]
"Homepage" = "https://github.com/YDaiLab/scRegulate"
"Documentation" = "https://github.com/YDaiLab/scRegulate#readme"
"Issue Tracker" = "https://github.com/YDaiLab/scRegulate/issues"
"Paper (bioRxiv)" = "https://doi.org/10.1101/2025.04.17.649372"
[tool.setuptools.dynamic]
version = { attr = "scregulate.__version__.__version__" }
[tool.setuptools.packages.find]
where = ["."]