-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.76 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ctpelvimetry"
version = "1.7.0"
description = "Automated pelvimetry and body composition analysis from CT segmentations"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "Shih-Feng Huang", email = "odafeng@hotmail.com"},
]
keywords = ["pelvimetry", "CT", "body-composition", "medical-imaging", "TotalSegmentator"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"numpy>=1.24",
"nibabel>=5.0",
"pandas>=2.0",
"scipy>=1.11",
"matplotlib>=3.7",
"tqdm>=4.60",
]
[project.urls]
Homepage = "https://github.com/odafeng/ctpelvimetry"
Repository = "https://github.com/odafeng/ctpelvimetry"
Issues = "https://github.com/odafeng/ctpelvimetry/issues"
Changelog = "https://github.com/odafeng/ctpelvimetry/blob/main/CHANGELOG.md"
[project.scripts]
ctpelvimetry = "ctpelvimetry.cli:main"
[project.optional-dependencies]
seg = ["TotalSegmentator>=2.0"]
dev = ["pytest>=8.0", "ruff", "mypy", "flake8"]
[tool.setuptools.packages.find]
include = ["ctpelvimetry*"]
[tool.ruff.lint]
# Preserve Ruff's pre-0.16 default rule set explicitly so CI remains stable
# across Ruff releases.
select = ["E4", "E7", "E9", "F"]