-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools >=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyepp"
description = "A Python API on top of the EPP protocol."
readme = "README.md"
authors = [
{ name = "InternetNZ", email = "ehsan@internetnz.net.nz" }
]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
keywords = ["epp", "registry", "api", "domain", "nameserver"]
dependencies = [
"jinja2>=3.1.6",
"lxml>=5.4.0",
"beautifulsoup4>=4.13.4",
"click>=8.2.0"
]
requires-python = ">=3.10"
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "pyepp.__version__"}
[project.optional-dependencies]
dev = ["bandit", "coverage", "pylint", "pytest", "safety"]
[project.urls]
"Homepage" = "https://github.com/InternetNZ/pyepp"
"Repository" = "https://github.com/InternetNZ/pyepp"
"Documentation" = "https://pyepp.readthedocs.io/en/latest/index.html"
[project.scripts]
pyepp = "pyepp.cli.__main__:pyepp_cli"