Skip to content

Commit

Permalink
added metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
badjware committed Apr 27, 2018
1 parent e04fd3c commit beadee3
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,37 @@
from setuptools import setup
from setuptools import find_packages

version = '0.1.0'

with open('README.md') as f:
readme = f.read()

setup(
name='certbot-dns-cpanel',
package=find_packages(),
version=version,
description='certbot plugin to allow acme dns-01 authentication of a name managed in cPanel.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/badjware/certbot-dns-cpanel',
author='Massaki Archambault',
author_email='[email protected]',
license='Apache Licence 2.0',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
keywords='certbot letsencrypt cpanel dns-01 plugin',
install_requires=[
'certbot',
'zope.interface',
Expand Down

0 comments on commit beadee3

Please sign in to comment.