Skip to content

Commit

Permalink
add long description and classifiers to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zak905 committed Apr 15, 2024
1 parent e6fde3d commit 24fc5a1
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,38 @@
"mock",
]

from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()

setup(
name="certbot-dns-ionos",
version="0.1.0",
description="Certbot DNS Authenticator plugin for IONOS",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ionos-cloud/certbot-dns-ionos-cloud",
author="IONOS Cloud DNS team",
author_email="paas-dns@ionos.com",
license="Apache License 2.0",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
Expand Down

0 comments on commit 24fc5a1

Please sign in to comment.