16 lines
334 B
TOML
16 lines
334 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "setuptools_scm[toml]>=8"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "voxeldev"
|
|
requires-python = ">=3.8"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
# Add runtime dependencies here
|
|
"matplotlib",
|
|
"numpy"
|
|
]
|
|
|
|
# Enables the usage of setuptools_scm
|
|
[tool.setuptools_scm] |