45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[project]
|
|
name = "science_signal"
|
|
version = "1.0.0"
|
|
authors = [
|
|
{ name = "linarphy", email = "linarphy@linarphy.net" }
|
|
]
|
|
description = "A temporal/frequential signal library"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Science/Research",
|
|
"Operating System :: OS Independent",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Topic :: Scientific/Engineering :: Physics",
|
|
]
|
|
dependencies = [
|
|
"scipy",
|
|
"numpy",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.linarphy.net/linarphy/science_signal"
|
|
Issues = "https://git.linarphy.net/linarphy/science_signal/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling", "hatch-gettext"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.hooks.gettext]
|
|
locale-directory = "src/science_signal/locale"
|
|
indentify-left-out = true
|
|
regenerate-template = true
|
|
show-report = true
|
|
|
|
[tool.ruff]
|
|
line-length = 72
|
|
builtins = ["_"]
|
|
|
|
[tool.basedpyright]
|
|
venvPath = ".env"
|
|
typeCheckingMode = "all"
|
|
reportAny = false
|
|
reportUnknownArgumentType = false
|