41 lines
1,003 B
TOML
41 lines
1,003 B
TOML
[project]
|
|
name = "backscattering_analyzer"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="linarphy", email="linarphy@linarphy.com" },
|
|
]
|
|
description = "Analyze backscattering noise"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Intended Audience :: Science/Research",
|
|
"Operating System :: OS Independent",
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
"Topic :: Scientific/Engineering",
|
|
]
|
|
dependencies = [
|
|
"numpy",
|
|
"scipy",
|
|
"rich",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.linarphy.net/linarphy/backscattering-analyzer"
|
|
Issues = "https://git.linarphy.net/linarphy/backscattering-analyzer/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/backscattering_analyzer"]
|
|
|
|
[tool.ruff]
|
|
line-length = 72
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|
|
docstring-code-format = true
|