File: setup.py

package info (click to toggle)
pkb-client 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 332 kB
  • sloc: python: 2,518; makefile: 92
file content (38 lines) | stat: -rw-r--r-- 1,248 bytes parent folder | download | duplicates (3)
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
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="Python client for the Porkbun API",
    long_description=long_description,
    long_description_content_type="text/markdown",
    license="MIT",
    classifiers=[
        "Programming Language :: Python :: 3",
        "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)",
        "Topic :: Utilities",
        "Topic :: System :: Systems Administration",
    ],
    packages=find_packages(),
    python_requires=">=3.9",
    install_requires=["setuptools>=39.0.1", "requests>=2.20.0", "dnspython~=2.7"],
    entry_points={
        "console_scripts": [
            "pkb-client = pkb_client.cli.cli:main",
        ]
    },
)