summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-11-20 01:17:40 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2024-11-20 01:17:40 -0500
commit3e3ebe586385a83b10c8f1d0b9ba9b67c8b56d2f (patch)
tree5682f748fc9867166043734aad44e1734d16abeb /setup.py
parentfa197fe27b8a03bbf4504476f842956ece2c76c9 (diff)
New upstream version 2.0.0.upstream/2.0.0
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py21
1 files changed, 9 insertions, 12 deletions
diff --git a/setup.py b/setup.py
index fcc4a15..d1c8f04 100644
--- a/setup.py
+++ b/setup.py
@@ -10,17 +10,17 @@ setup(
version=pkb_client.__version__,
author="infinityofspace",
url="https://github.com/infinityofspace/pkb_client",
- description="Unofficial client for the Porkbun API",
+ description="Python client for the Porkbun API",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
- "Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: Name Service (DNS)",
@@ -28,14 +28,11 @@ setup(
"Topic :: System :: Systems Administration",
],
packages=find_packages(),
- python_requires=">=3.6",
- install_requires=[
- "setuptools>=39.0.1",
- "requests>=2.20.0"
- ],
+ python_requires=">=3.9",
+ install_requires=["setuptools>=39.0.1", "requests>=2.20.0", "dnspython~=2.6"],
entry_points={
"console_scripts": [
- "pkb-client = pkb_client.cli:main",
+ "pkb-client = pkb_client.cli.cli:main",
]
- }
+ },
)