forked from barnybug/cli53
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 665 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
__version__ = '0.3.1'
long_description = file('README','r').read()
setup(name='cli53',
version=__version__,
description='Command line script to administer the Amazon Route 53 DNS service',
long_description=long_description,
license='MIT',
author='Barnaby Gray',
author_email='barnaby@pickle.me.uk',
url='http://loads.pickle.me.uk/cli53/',
install_requires=['boto', 'argparse', 'dnspython'],
scripts=['scripts/cli53'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)