-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
46 lines (38 loc) · 1.01 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
[project]
name = "pypdns"
version = "2.2.8"
description = "Python API for PDNS."
authors = [
{name="Raphaël Vinot", email="[email protected]"}
]
license = "GPL-3.0+"
readme = "README.md"
requires-python = ">=3.9"
dynamic = [ "classifiers" ]
dependencies = [
"requests-cache (>=1.2.1)",
"dnspython (>=2.7.0)"
]
[project.urls]
repository = "https://github.com/CIRCL/PyPDNS"
documentation = "https://pypdns.readthedocs.io"
[tool.poetry]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Topic :: Security',
'Topic :: Internet'
]
[project.scripts]
pdns = 'pypdns:main'
[project.optional-dependencies]
docs = [ "sphinx (>=8.1.3) ; python_version >= \"3.10\"" ]
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.1"
types-requests = "^2.32.0.20241016"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"