summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 541207dbc9ab902742056130cb30f80dbeda0f97 (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
[tool.poetry]
name = "dnspython"
version = "2.0.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", optional=true}
cryptography = {version="^2.6", optional=true}

[tool.poetry.dev-dependencies]
mypy = "^0.770"
pytest = "^5.4.1"
flake8 = "^3.7.9"
sphinx = "^3.0.0"

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

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