-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (72 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
86 lines (72 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core" ]
[tool.poetry]
name = "pathlibutil"
version = "0.0.0"
description = "inherits from pathlib.Path with methods for hashing, copying, deleting and more"
authors = [ "Christoph Dörrer <d-chris@web.de>" ]
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [ "pathlib", "hashlib", "shutil", "urllib.parse", "json", "urlpath" ]
[tool.poetry.urls]
repository = "https://github.com/d-chris/pathlibutil"
documentation = "https://d-chris.github.io/pathlibutil"
[tool.poetry.dependencies]
python = "^3.8.1"
py7zr = { version = ">=0.20.2", optional = true }
[tool.poetry.extras]
7z = [ "py7zr" ]
[tool.poetry.group.dev.dependencies]
tox = ">=4.11.4"
pyinstaller = { version = ">=6.10.0", python = "<3.15" }
[tool.poetry.group.test.dependencies]
pytest = ">=8.3.3"
pytest-random-order = ">=1.1.0"
pytest-cov = ">=4.1.0"
pytest-mock = ">=3.12.0"
exrex = ">=0.12.0"
[tool.poetry.group.docs.dependencies]
jinja2-pdoc = ">=1.1.0"
pyperclip = ">=1.9.0"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/legacy/"
priority = "explicit"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = "tests"
addopts = [
"--random-order",
"--color=yes",
"-s",
"--cov=pathlibutil",
"--cov-report=term-missing:skip-covered",
"--cov-report=xml",
]
[tool.coverage.report]
exclude_lines = [
"^def normalize_url",
]
[tool.coverage.run]
omit = [
"*/tests/*",
"*/docs/*",
"*/examples/*",
]