forked from cocolato/pydumpling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 1.19 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
49
50
51
52
[tool.pdm]
distribution = true
[tool.pdm.scripts]
test = {composite = ["pdm install", "flake8 ./pydumpling ./tests", "pytest --cov=pydumpling --cov-report=term-missing tests/"]}
docs = {shell = "cd docs && make html"} # build sphinx docs
docs_export = { shell = "pdm export -G doc -o docs/requirements.txt --without-hashes" } # export requirements for docs
docs_preview = {shell = 'python -m http.server -d docs\build\html'}
[tool.pdm.build]
includes = ["pydumpling/*.py"]
[tool.pdm.dev-dependencies]
test = [
"pytest-order>=1.2.0",
"flake8>=5.0.4",
"pytest-cov>=4.1.0",
]
dev = [
"tox-pdm>=0.6.1",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "pydumpling"
version = "0.1.6"
description = "Python post-mortem debugger"
authors = [
{name = "cocolato", email = "[email protected]"},
]
dependencies = [
"dill<1.0.0,>=0.3.2",
"packaging>=24.0",
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "MIT"}
[project.urls]
homepage = "https://github.com/cocolato/pydumpling"
[project.optional-dependencies]
doc = [
"sphinx>=4.3.2",
"sphinx-rtd-theme>=1.3.0",
"sphinx-tabs>=3.4.5",
"sphinx-copybutton>=0.5.2",
]