-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.67 KB
/
setup.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
"""PIP Project Installation Program."""
from setuptools import setup, find_packages
from lets_do_dns import __version__
setup(
name='lets-do-dns',
version=__version__,
license='Apache-2.0',
author='Joel Gerber',
author_email='[email protected]',
url='https://github.com/jitsusama/lets-do-dns',
download_url=(
'https://github.com/jitsusama/lets-do-dns/releases'
'/download/v{0}/lets-do-dns-{0}.tar.gz'.format(__version__)),
keywords=['certbot', 'letsencrypt', 'DigitalOcean', 'DNS', 'SSL'],
description=(
"A letsencrypt certbot auth/cleanup hook program engineered to "
"handle hostname ownership authentication via DigitalOcean's DNS "
"system."),
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Security :: Cryptography',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'lets-do-dns = lets_do_dns.__main__:main'
]
},
install_requires=['requests', 'dnspython'],
tests_require=[
'pylama',
'pylama_pylint',
'pytest',
'pytest-cov',
'pytest-mock',
'requests',
]
)