from os.path import join, dirname from setuptools import setup, find_packages def read(fname): return open(join(dirname(__file__), fname)).read() config = { 'name': "awsdyndns", 'version': "0.1", 'author': "Walter Oggioni", 'author_email': "oggioni.walter@gmail.com", 'description': ("Simple utility to dynamically update Route 53 DNS on AWS"), 'long_description': '', 'license': "MIT", 'keywords': "build", 'url': "https://github.com/oggio88/awsdyndns", 'packages': ['awsdyndns'], 'include_package_data': True, 'classifiers': [ 'Development Status :: 3 - Alpha', 'Topic :: Utilities', 'License :: OSI Approved :: MIT License', 'Intended Audience :: System Administrators', 'Intended Audience :: Developers', 'Environment :: Console', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', 'Topic :: Utilities' ], "entry_points": { 'console_scripts': [ 'awsdyndns=awsdyndns.wrapper:run', ], } } setup(**config)