forked from cosimo/route53-transfer-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 1.02 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 os
from setuptools import setup
from route53_transfer import __version__
def read(filename):
fullpath = os.path.join(os.path.dirname(__file__), filename)
return open(fullpath, 'r', encoding='utf-8').read()
setup(name='route53-transfer-ng',
version=__version__,
description='Backup and restore Route53 zones, or transfer between AWS accounts.',
long_description=read('README.md'),
url='http://github.com/cosimo/route53-transfer-ng',
author='Cosimo Streppone',
author_email='[email protected]',
license='Apache License 2.0',
packages=['route53_transfer'],
scripts=['bin/route53-transfer-ng'],
tests_require=open('test-requirements.txt').readlines(),
install_requires=open('requirements.txt').readlines(),
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
'Operating System :: OS Independent',
])