dnscode/pyproject.toml

38 lines
932 B
TOML
Raw Normal View History

2025-01-13 13:31:29 -06:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dnscode"
2025-01-26 20:26:12 -06:00
version = "1.3.2"
2025-01-13 13:31:29 -06:00
authors = [
{ name="Minecraftchest1", email="me@minec1.us" },
]
description = "Simplifying DNS Zone Management"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Utilities",
]
dependencies = [
"dnspython==2.7.0",
"fqdn==1.5.1",
]
[project.urls]
Homepage = "https://code.minecraftchest1.us/minecraftchest1/dnscode"
2025-01-23 08:31:31 -06:00
Issues = "https://code.minecraftchest1.us/minecraftchest1/dnscode/issues"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"src"
]