42 lines
999 B
TOML
42 lines
999 B
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 :: 2 - Pre-Alpha",
|
|
"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",
|
|
"science_signal",
|
|
"matplotlib.pyplot",
|
|
]
|
|
|
|
[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
|
|
|
|
[tool.basedpyright]
|
|
venvPath = ".env"
|
|
typeCheckingMode = "all"
|
|
reportAny = false
|
|
reportUnknownArgumentType = false
|