-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (43 loc) · 1.01 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
53
54
[project]
description = "Profiling, testing, and benchmarking"
name = "honesty"
license = {text = "MIT"}
authors = [
{name = "Synodic Software", email = "[email protected]"},
]
readme = "README.md"
dynamic = ["version"]
dependencies = []
requires-python = ">=3.12"
[project.license-files]
paths = ["LICENSE.md"]
[project.urls]
homepage = "https://github.com/Synodic-Software/Synodic-Template-Library"
repository = "https://github.com/Synodic-Software/Synodic-Template-Library"
[tool.pdm.dev-dependencies]
dev = [
"cmake>=3.27.2",
"cppython-conan>=0.0.0.dev1",
"cppython-pdm>=0.2.8.dev2",
]
lint = [
"black>=22.6.0",
"pylint>=2.14.5",
"isort>=5.10.1",
"mypy>=1.6.0",
]
test = [
"pytest>=7.1.2",
"pytest-cov>=3.0.0",
"pytest-click>=1.1",
"pytest-mock>=3.8.2",
"pytest-cppython>=0.2.0.dev0",
]
[tool.pdm.options]
update = ["--update-all"]
[tool.pdm.scripts]
build = {shell = "cppython build"}
test = {shell = "cppython test"}
[build-system]
build-backend = "pdm.backend"
requires = ["pdm.backend"]