-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 968 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 968 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
[project]
name = "voxelmap"
version = "5.1.1"
description = "A Python library for voxel modeling from NumPy arrays"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Andrew R. Garcia", email = "garcia.gtr@gmail.com" }]
requires-python = ">=3.8"
dependencies = ["numpy>=1.24.1", "matplotlib>=3.6.2"]
[project.optional-dependencies]
io = [
"pandas>=2.1" # 2.1+ supports Python 3.12
]
mesh = [
"pyvista>=0.44", # modern pyvista, 3.12-compatible
"scikit-image>=0.22", # 0.22+ supports Python 3.12
"opencv-python>=4.8", # 4.8+ has wheels for 3.12
"scipy>=1.11" # 1.11+ supports Python 3.12
]
all = [
"pandas>=2.1",
"pyvista>=0.44",
"scikit-image>=0.22",
"opencv-python>=4.8",
"scipy>=1.11"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["voxelmap*"]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]