mirror of
https://github.com/pim-n/pg-rad
synced 2026-02-03 14:43:08 +01:00
32 lines
769 B
TOML
32 lines
769 B
TOML
[build-system]
|
|
requires = ["setuptools>=64.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[project]
|
|
name = "pg-rad"
|
|
version = "0.2.0"
|
|
authors = [
|
|
{ name="Pim Nelissen", email="pi0274ne-s@student.lu.se" },
|
|
]
|
|
description = "Primary Gamma RADiation Landscape"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12.4,<3.13"
|
|
dependencies = [
|
|
"matplotlib>=3.9.2",
|
|
"numpy>=2",
|
|
"pandas>=2.3.1",
|
|
"piecewise_regression==1.5.0",
|
|
"pyyaml>=6.0.2"
|
|
]
|
|
license = "MIT"
|
|
license-files = ["LICEN[CS]E*"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/pim-n/pg-rad"
|
|
Issues = "https://github.com/pim-n/pg-rad/issues"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest", "notebook", "mkdocs-material", "mkdocstrings-python"] |