python-sdk/pyproject.toml

31 lines
1003 B
TOML
Raw Normal View History

2023-04-12 14:17:01 +00:00
[project]
name = "happydomain"
2023-12-10 11:42:09 +00:00
version = "0.3.0"
2023-04-12 14:17:01 +00:00
authors = [
{ name="happyDomain's team", email="contact+pypi@happydomain.org" },
]
description = "Finally a simple interface for domain names."
readme = "README.md"
2023-12-10 10:13:45 +00:00
license = {file = "LICENSE"}
2023-04-12 14:17:01 +00:00
requires-python = ">=3.9"
2023-12-10 10:13:45 +00:00
keywords = ['dns ns happydomain domain domainname']
2023-04-12 14:17:01 +00:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Operating System :: POSIX",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Internet :: Name Service (DNS)",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: POSIX",
]
2023-12-10 10:13:45 +00:00
dependencies = ['requests']
2023-04-12 14:17:01 +00:00
[project.urls]
"Homepage" = "https://git.happydomain.org/python-sdk"
"Bug Tracker" = "https://git.happydomain.org/python-sdk/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"