21 lines
555 B
TOML
21 lines
555 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pojagi-dsp"
|
|
description = "DSP tools for load testing."
|
|
urls = { "gitlab" = "https://gitlab.pojagi.org/tjb1982/dsp" }
|
|
authors = [{ name = "Tom Brennan", email = "tjb1982@gmail.com" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = []
|
|
dependencies = [
|
|
"pydantic~=1.10.2",
|
|
"scipy~=1.16.2",
|
|
]
|
|
|
|
optional-dependencies = { test = ["pytest"], dev = ["matplotlib", "scipy"] }
|
|
version = "0.0.0.dev0"
|
|
# dynamic = ["version"]
|