-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["webdavclient"]
[tool.setuptools.packages.find]
exclude=["test*","models*","data*","docs*","demo*"]
[project]
name = "webdavclient"
version = "0.0.1"
authors = [
{ name="Jonas Heinle", email="[email protected]" },
]
license = {file = "LICENSE"}
description = "This package contains modules to easily communicate to a host via WebDav."
readme = "README.md"
dependencies = [
"requests",
"loguru",
]
requires-python = ">=3.11"
keywords=["webdav", "cloud"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://webdavclient.jonas.heinle.de"
Source = "https://github.com/Kataglyphis/WebDavClient"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-benchmark",
"pytest-cov",
"line_profiler",
"wsgidav",
"cheroot",
"black",
"flake8",
"mypy",
"pylint",
"isort",
"pre-commit"
]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
exclude = [
'^file1\.py$', # TOML literal string (single-quotes, no escaping necessary)
"^file2\\.py$", # TOML basic string (double-quotes, backslash and other characters need escaping)
]
[tool.vulture]
exclude = [
'^file1\.py$', # TOML literal string (single-quotes, no escaping necessary)
"^file2\\.py$", # TOML basic string (double-quotes, backslash and other characters need escaping)
]