2022-07-20 12:58:48 +00:00
|
|
|
[project] # Project metadata
|
|
|
|
name = "lasp"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
license = { "file" = "LICENSE" }
|
|
|
|
authors = [{ "name" = "J.A. de Jong et al.", "email" = "info@ascee.nl" }]
|
|
|
|
keywords = ["DSP", "DAQ", "Signal processing"]
|
2022-08-01 15:26:22 +00:00
|
|
|
|
2022-07-20 12:58:48 +00:00
|
|
|
classifiers = [
|
|
|
|
"Topic :: Scientific/Engineering",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
]
|
2022-08-01 15:26:22 +00:00
|
|
|
|
2022-07-20 12:58:48 +00:00
|
|
|
# urls = { "Documentation" = "https://" }
|
2022-09-22 08:11:47 +00:00
|
|
|
dependencies = ["numpy", "scipy", "appdirs", "h5py", "appdirs", "dataclasses_json", ]
|
2022-07-20 12:58:48 +00:00
|
|
|
dynamic = ["version", "description"]
|
|
|
|
|
|
|
|
[build-system] # How pip and other frontends should build this project
|
|
|
|
requires = [
|
|
|
|
"setuptools>=42",
|
|
|
|
"wheel",
|
|
|
|
"scikit-build",
|
|
|
|
"cmake",
|
|
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|