62 lines
1.7 KiB
TOML
62 lines
1.7 KiB
TOML
[project]
|
|
name = "lasp"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
description = "Library for Acoustic Signal Processing"
|
|
license = { "file" = "LICENSE" }
|
|
authors = [{ "name" = "J.A. de Jong", "email" = "j.a.dejong@ascee.nl" }]
|
|
version = "1.6.8"
|
|
|
|
keywords = ["DSP", "DAQ", "Signal processing"]
|
|
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Topic :: Scientific/Engineering",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: Microsoft :: Windows",
|
|
]
|
|
urls = { "Documentation" = "https://lasp.ascee.nl" }
|
|
|
|
dependencies = [
|
|
"scipy>=1.13.1",
|
|
"matplotlib>=3.7.2",
|
|
"appdirs",
|
|
"dataclasses_json",
|
|
"h5py",
|
|
]
|
|
|
|
[build-system] # How pip and other frontends should build this project
|
|
requires = ["py-build-cmake~=0.1.8", "pybind11"]
|
|
build-backend = "py_build_cmake.build"
|
|
|
|
[tool.py-build-cmake.module] # Where to find the Python module to package
|
|
directory = "python_src"
|
|
|
|
[tool.py-build-cmake.sdist] # What to include in source distributions
|
|
include = [
|
|
"CMakeLists.txt",
|
|
"cmake",
|
|
"cpp_src",
|
|
"python_src",
|
|
"img",
|
|
"scripts",
|
|
"third_party",
|
|
]
|
|
|
|
[tool.py-build-cmake.cmake] # How to build the CMake project
|
|
build_type = "Release"
|
|
source_path = "."
|
|
options = { "LASP_HAS_PORTAUDIO" = "ON", "LASP_HAS_RTAUDIO" = "OFF" }
|
|
build_args = ["-j"]
|
|
install_components = ["python_modules"]
|
|
|
|
[tool.py-build-cmake.editable]
|
|
# This might not work properly on Windows. Comment this out when testing on
|
|
# Windows.
|
|
mode = "symlink"
|