-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 944 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 944 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rgit"
version = "0.2.0"
description = "Information-theoretic bounds on radiogenomic recoverability"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Radiogenomic Information-Theoretic Bounds Project" }]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"scikit-learn>=1.3",
"pandas>=2.0",
"anndata>=0.10",
"matplotlib>=3.7",
"tqdm>=4.0",
"pydantic>=2.0"
]
[project.scripts]
rgit-recoverability = "rgit.cli:main"
[project.optional-dependencies]
processing = ["gseapy", "SimpleITK>=2.0", "nibabel>=3.0", "pyradiomics>=3.0", "torch>=2.0", "torchvision>=0.15", "Pillow>=9.0", "scanpy>=1.9", "tcia_radiology_processing"]
notebooks = ["jupyter>=1.0", "ipykernel>=6.0", "papermill>=2.0"]
dev = ["pytest>=7.0", "doi2bib"]
[tool.setuptools]
packages = ["rgit"]