-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
41 lines (37 loc) · 1.1 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
[project]
name = "asyncwhois"
authors = [
{ name="Joe Obarzanek", email="[email protected]" },
]
description = "Python WHOIS and RDAP utility for querying and parsing information about Domains, IPv4s, IPv6s, and AS numbers."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: Security",
"Framework :: AsyncIO",
]
dynamic = ["version"]
license = {text = "MIT License"}
dependencies = [
"python-dateutil>=2.9.0",
"python-socks[asyncio]>=2.0.2",
"tldextract>=3.2.0",
"whodap>=0.1.12"
]
[project.urls]
Homepage = "https://github.com/pogzyb/asyncwhois"
Issues = "https://github.com/pogzyb/asyncwhois/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["asyncwhois"]
[tool.hatch.version]
path = "asyncwhois/__init__.py"