-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·58 lines (46 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
executable file
·58 lines (46 loc) · 1.34 KB
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
55
56
57
58
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "wexample-helpers-git"
version = "0.0.96"
description = "Some python basic helpers for git."
authors = [{name = "weeger", email = "contact@wexample.com"}]
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"]
dependencies = [
"attrs>=23.1.0",
"cattrs>=23.1.0",
"gitpython",
"wexample-helpers==0.0.88",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "MIT"
[project.urls]
homepage = "https://github.com/wexample/python-helpers-git"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
[tool.setuptools.packages.find]
include = ["*"]
exclude = ["wexample_helpers_git.testing*"]
[tool.pdm]
distribution = true
[tool.pdm.build]
package-dir = "src"
[[tool.pdm.build.packages]]
include = "wexample_helpers_git"
from = "src"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.coverage.run]
source = ["wexample_helpers_git"]
omit = ["*/tests/*", "*/.venv/*", "*/venv/*"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError", "if __name__ == .__main__.:", "if TYPE_CHECKING:", "@abstractmethod"]