summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: cefe78b333322b537bb62be393b8a731293c99e4 (plain)
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
[tool.poetry]
name = "dnspython"
version = "2.2.0"
description = "DNS toolkit"
authors = ["Bob Halley <halley@dnspython.org>"]
license = "ISC"
packages = [
    {include = "dns"}
]

[tool.poetry.dependencies]
python = "^3.6"
requests-toolbelt = {version="^0.9.1", optional=true}
requests = {version="^2.23.0", optional=true}
idna = {version=">=2.1,<4.0", optional=true}
cryptography = {version=">=2.6,<4.0", optional=true}
trio = {version=">=0.14,<0.20", optional=true}
curio = {version="^1.2", optional=true}
sniffio = {version="^1.1", optional=true}

[tool.poetry.dev-dependencies]
mypy = "^0.910"
pytest = ">=5.4.1,<7"
pytest-cov = "^2.10.0"
flake8 = "^3.7.9"
sphinx = "^4.0.0"
coverage = "^5.1"
twine = "^3.1.1"
wheel = "^0.35.0"
pylint = "^2.7.4"

[tool.poetry.extras]
doh = ['requests', 'requests-toolbelt']
idna = ['idna']
dnssec = ['cryptography']
trio = ['trio']
curio = ['curio', 'sniffio']

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.setuptools_scm]