-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 805 Bytes
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
[project]
name = "dnsutils"
version = "0.1.0"
description = "Utilities for retrieving DNS records or working with the DNS protocol"
readme = "README.md"
authors = [
{ name = "ak9999", email = "abdullah@ajkhan.me" }
]
requires-python = ">=3.13"
dependencies = [
"dnspython>=2.6.1",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Networking",
]
[project.optional-dependencies]
dev = [
"build",
]
[project.scripts]
dnsutils = "dnsutils:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"