This repository has been archived by the owner on Feb 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
pyproject.toml
70 lines (57 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "whois"
dynamic = ['version']
authors = [
{ name="mboot-github"},
]
maintainers = [
{ name="Maarten Boot", email="[email protected]" },
]
description = "Python package for retrieving WHOIS information of domains."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"Python",
"whois",
"tld",
"domain",
"expiration",
"registrar",
]
[project.urls]
"Bug Tracker" = "https://github.com/mboot-github/WhoisDomain/issues"
"Home Page" = "https://github.com/mboot-github/WhoisDomain/"
"Repository" = "https://github.com/mboot-github/WhoisDomain/"
[tool.hatch.version]
path = "whois/version.py"
[tool.hatch.build]
only-packages = true
include = [
"whois/",
]
exclude = [
"/Old/*",
"/lib/*",
"/etc/*",
"/bin/*",
"/testdata/*",
"Makefile",
".gitignore",
"/.gitignore",
]
[tool.pylama]
max_line_length = 160
skip = "*/.pytest_cache/*, */.tox/*, */mypy_cache/*, ./dist, ./docs"