-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
31 lines (26 loc) · 793 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[project]
name = "pearson3curve"
version = "1.0.0r"
description = "Pearson III curve fitting and plotting"
authors = [{ name = "ListLee", email = "[email protected]" }]
dependencies = [
"numpy>=1.26.4",
"scipy>=1.12.0",
"matplotlib>=3.8.3",
"probscale>=0.2.5",
]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "MIT" }
[project.urls]
Homepage = "https://github.com/tanukihee/pearson3curve"
Documentation = "https://github.com/tanukihee/pearson3curve/blob/main/docs/api.md"
Repository = "https://github.com/tanukihee/pearson3curve.git"
Issues = "https://github.com/tanukihee/pearson3curve/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = ["pytest>=8.1.1"]