summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2023-12-26 19:39:06 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2023-12-26 19:39:06 -0500
commitfa197fe27b8a03bbf4504476f842956ece2c76c9 (patch)
tree5a75b92e4c731a4b2ced68eadb9581a8c922d82e /setup.py
Import Upstream version 1.2upstream/1.2
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..fcc4a15
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,41 @@
+from setuptools import setup, find_packages
+
+import pkb_client
+
+with open("Readme.md") as f:
+ long_description = f.read()
+
+setup(
+ name="pkb_client",
+ version=pkb_client.__version__,
+ author="infinityofspace",
+ url="https://github.com/infinityofspace/pkb_client",
+ description="Unofficial 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",
+ "License :: OSI Approved :: MIT License",
+ "Topic :: Internet :: WWW/HTTP",
+ "Topic :: Internet :: Name Service (DNS)",
+ "Topic :: Utilities",
+ "Topic :: System :: Systems Administration",
+ ],
+ packages=find_packages(),
+ python_requires=">=3.6",
+ install_requires=[
+ "setuptools>=39.0.1",
+ "requests>=2.20.0"
+ ],
+ entry_points={
+ "console_scripts": [
+ "pkb-client = pkb_client.cli:main",
+ ]
+ }
+)