-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (37 loc) · 1.02 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "physkit"
description = "A Python toolkit providing physical constants, unit conversions, and plotting styles"
readme = "README-pypi.md"
requires-python = ">=3.12"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "sapphimars" },
]
keywords = ["physics", "units", "pint", "plotting"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dependencies = [
"pint>=0.24.4",
"matplotlib>=3.10.0",
"pdm-backend>=2.4.3",
]
version = "0.1.21"
[project.scripts]
physkit = "physkit.cli:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
packages = [{ include = "physkit", from = "src" }]
distribution = true
[project.urls]
"Homepage" = "https://github.com/sapphimars/physkit"
"Repository" = "https://github.com/sapphimars/physkit"
"Bug Tracker" = "https://github.com/sapphimars/physkit/issues"
[dependency-groups]
test = [
"pytest",
]