-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.02 KB
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
[build-system]
requires = ["maturin>=1.10,<2"]
build-backend = "maturin"
[project]
name = "blastdns"
version = "1.9.1"
description = "Async Python interface on top of the BlastDNS resolver"
license = "GPL-3.0"
repository = "https://github.com/blacklanternsecurity/blastdns"
homepage = "https://github.com/blacklanternsecurity/blastdns"
authors = [{name = "TheTechromancer", email = "thetechromancer@protonmail.com"}]
keywords = ["dns", "async", "resolver", "networking", "osint"]
categories = ["network-programming", "asynchronous"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"orjson>=3.11.4",
"pydantic>=2.12.4",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"maturin>=1.10",
"dnspython>=2.7.0",
"tabulate>=0.9.0",
"ruff>=0.14.8",
"uvloop>=0.21.0",
]
[tool.ruff]
line-length = 119
lint.select = ["E", "F"]
lint.ignore = ["E402", "E711", "E713", "E721", "E741", "F403", "F405", "E501"]
[tool.maturin]
features = ["python"]
module-name = "blastdns._native"