-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.06 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
[project]
name = "explore_python"
version = "0.1.0"
description = "Default template for PDM package"
authors = [{ name = "Kevin McWhirter", email = "[email protected]" }]
dependencies = [
"gmpy2>=2.2.1",
"mpmath[gmpy2]>=1.3.0",
"numpy>=2.1.1",
"matplotlib>=3.9.2",
"nbformat>=5.10.4",
"sympy>=1.13.3",
"scipy>=1.14.1",
]
requires-python = ">=3.13"
readme = "README.md"
license = { text = "MIT" }
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
dev = [
"autopep8>=2.3.1",
"pytest>=8.3.3",
"tabulate>=0.9.0",
"ipykernel>=6.29.5",
]
[tool.pdm.scripts]
clean.shell = "find . -type d -name __pycache__ -exec rm -fr {} \\;;for d in ${TO_DEL};do echo $d;rm -fr $d;done"
clean.env = { TO_DEL = "build .coverage coverage.xml log .mypy_cache .pdm-build __pycache__ .pytest_cache src/qwirkle.egg-info .tox dist src/build" }
clean.help = "Clean environment"
create.shell = "pdm venv remove -y in-project; pdm install"
bbp1000 = "python -m chudnovsky.pi_gist -b 1000"
chud1000 = "python -m chudnovsky.pi_gist -c 1000"
test.cmd = "pytest"