forked from rthalley/dnspython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (73 loc) · 2.13 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
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "dnspython"
version = "2.5.0"
description = "DNS toolkit"
authors = ["Bob Halley <[email protected]>"]
license = "ISC"
packages = [
{include = "dns"}
]
include = [
{ path="LICENSE", format="sdist" },
{ path="README.md", format="sdist" },
{ path="examples/*.txt", format="sdist" },
{ path="examples/*.py", format="sdist" },
{ path="tests/*.txt", format="sdist" },
{ path="tests/*.py", format="sdist" },
{ path="tests/*.good", format="sdist" },
{ path="tests/example", format="sdist" },
{ path="tests/query", format="sdist" },
{ path="tests/*.pickle", format="sdist" },
{ path="tests/*.text", format="sdist" },
{ path="tests/*.generic", format="sdist" },
{ path="tests/tls/*.crt", format="sdist" },
{ path="tests/tls/*.pem", format="sdist" },
{ path="util/**", format="sdist" },
{ path="setup.cfg", format="sdist" },
]
exclude = [
"**/.DS_Store",
"**/__pycache__/**",
]
readme = "README.md"
homepage = "https://www.dnspython.org"
repository = "https://github.com/rthalley/dnspython.git"
documentation = "https://dnspython.readthedocs.io/en/stable/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rthalley/dnspython/issues"
[tool.poetry.dependencies]
python = "^3.8"
httpx = {version=">=0.24.1", optional=true}
httpcore = {version=">=0.17.3", optional=true}
h2 = {version=">=4.1.0", optional=true}
idna = {version=">=2.1,<4.0", optional=true}
cryptography = {version=">=2.6", optional=true}
trio = {version=">=0.14,<0.24", optional=true}
wmi = {version="^1.5.1", optional=true}
aioquic = {version=">=0.9.20", optional=true}
[tool.poetry.dev-dependencies]
pytest = ">=5.4.1,<8"
pytest-cov = "^4.0.0"
flake8 = "^5.0.3"
sphinx = "^7.0.0"
coverage = "^7.0"
twine = "^4.0.0"
wheel = "^0.41.0"
pylint = ">=2.7,<4"
mypy = ">=1.0.1"
black = "^23.1.0"
[tool.poetry.extras]
doh = ['httpx', 'h2', 'httpcore']
idna = ['idna']
dnssec = ['cryptography']
trio = ['trio']
wmi = ['wmi']
doq = ['aioquic']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools_scm]
[tool.ruff]
ignore = ['E741', 'F401']
[tool.isort]
profile = "black"