-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (39 loc) · 934 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiodnsresolver"
version = "0.0.0.dev0"
authors = [
{ name="Gerald", email="[email protected]" },
{ name="Michal Charemza", email="[email protected]" },
]
description = "Pure asyncio Python DNS resolver"
readme = "README.md"
requires-python = ">=3.6.4"
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: Name Service (DNS)",
]
[project.optional-dependencies]
test = [
"aiofastforward",
"aiohttp",
"pytest",
"pytest-cov",
]
lint = [
"pre-commit",
"pylint",
]
[project.urls]
"Homepage" = "https://github.com/michalc/aiodnsresolver"
[tool.hatch.build]
include = [
"aiodnsresolver.py",
]