stocproc/pyproject.toml
2022-11-23 20:38:08 +01:00

30 lines
849 B
TOML

[tool.poetry]
description = "Generate continuous time stationary stochastic processes from a given auto correlation function."
name = "stocproc"
version = "1.1.3"
authors = ["Richard Hartmann <richard.hartmann@tu-dresden.de>"]
license = "BSD (3 clause)"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Topic :: Utilities",
"Intended Audience :: Researcher"
]
repository = "https://github.com/cimatosa/stocproc"
build = 'build.py'
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
scipy = "^1.7.3"
mpmath = "^1.2.1"
fcSpline = { git = "https://github.com/vale981/fcSpline" }
numpy = "^1.22.2"
setuptools = "*"
[tool.poetry.dev-dependencies]
Cython = "^0.29.25"
black = "^21.12b0"
[build-system]
requires = ["poetry>=0.12", "cython", "setuptools", "numpy"]
build-backend = "poetry.core.masonry.api"