-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.18 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
[tool.black]
line-length = 80
target-version = ["py39"]
paths = ["dhl", "tests"]
[tool.vulture]
ignore_names = ["context", "*_mock"]
make_whitelist = true
min_confidence = 80
paths = ["dhl", "tests"]
sort_by_size = true
[tool.bandit.assert_used]
skips = ['*_test.py', '*test_*.py']
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python_dhl_germany"
version = "0.3.4.14"
authors = [{ name = "Johannes Eimer", email = "[email protected]" }]
description = "Python Lib for DHL SOAP API (Germany)"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["DHL", "Python"]
dependencies = ["requests==2.31.0", "zeep==4.2.1"]
[tool.hatch.build.targets.sdist]
include = ["dhl"]
[tool.hatch.build.targets.wheel]
package = ["dhl"]
[tool.hatch.build.targets.wheel.force-include]
"dhl" = "dhl"
"~/wsdl/3.4.0/geschaeftskundenversand-api-3.4.0-schema-bcs_base.xsd" = "dhl/wsdl/3.4.0/geschaeftskundenversand-api-3.4.0-schema-bcs_base.xsd"
"~/wsdl/3.4.0/geschaeftskundenversand-api-3.4.0-schema-cis_base.xsd" = "dhl/wsdl/3.4.0/geschaeftskundenversand-api-3.4.0-schema-cis_base.xsd"
"~/wsdl/3.4.0/production.wsdl" = "dhl/wsdl/3.4.0/production.wsdl"