-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.16 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
import setuptools
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Internet :: Name Service (DNS)'
]
setuptools.setup(name='autodns',
version='0.0.1',
description='Update DNS records with AWS Rt53',
long_description=open('README.md').read().strip(),
author='Charles Butler',
author_email='[email protected]',
url='http://github.com/chuckbutler/autodns',
py_modules=[],
packages=find_packages(),
entry_points={
'console_scripts': [
'autodns = autodns.cli:main'
],
},
install_requires=['pyyaml', 'path.py', 'IPy', 'requests',
'boto'],
include_package_data=True,
license='MIT License',
zip_safe=False,
keywords='dns, aws, route53, rt53',
classifiers=CLASSIFIERS)