-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["scikit-build-core>=0.7", "setuptools-scm", "cython>=0.29", "numpy"]
build-backend = "scikit_build_core.build"
[project]
name = "histomicstk"
description = "A Python toolkit for Histopathology Image Analysis"
readme = "README.rst"
authors = [
{name = "Kitware, Inc.", email = "developers@digitalslidearchive.net"}
]
urls = {Homepage = "https://github.com/DigitalSlideArchive/HistomicsTK"}
license = {text = "Apache Software License 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["histomicstk"]
requires-python = ">=3.9"
dependencies = [
"girder-client",
"nimfa",
"numpy",
"scipy",
"Pillow",
"pandas",
"scikit-image",
"scikit-learn",
"imageio",
"shapely",
"sqlalchemy",
"matplotlib",
"pyvips",
"dask[dataframe]<2024.11.0",
"distributed",
"large-image[sources];sys.platform=='linux'",
"large-image[common];sys.platform!='linux'",
"large-image-converter;sys.platform=='linux'",
"girder-slicer-cli-web",
"ctk-cli",
"opencv-python-headless<4.12; python_version < '3.10'",
"opencv-python-headless; python_version >= '3.10'",
]
dynamic = ["version"]
[project.scripts]
histomicstk = "histomicstk.cli.__main__:main"
[tool.scikit-build]
wheel.packages = ["histomicstk"]
sdist.exclude = ["*.git*"]
cmake.build-type = "Release"
sdist.include = ["histomicstk/_version.py"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
fallback_version = "0.0.0"
[tool.setuptools.package-data]
"*" = ["*.pyx", "*.pxd"]
[tool.codespell]
skip = '.git*,*.pdf,*.svg,.pre-commit-config.yaml'
check-hidden = true
ignore-regex = '(^\s*"image/\S+": ".*)'
ignore-words-list = 'hist,indext,pixelx,thex,subtile,nd,hsi,bult,vor,re-use,re-uses'