Commit d8256eb3 authored by Kevin Lyda's avatar Kevin Lyda 💬
Browse files

Add dependencies.

parent de707722
......@@ -4,6 +4,11 @@ zone2gandi
Please have a look at the corresponding article:
http://gehrcke.de/2014/02/distributing-a-python-command-line-application/
Getting API Credentials
~~~~~~~~~~~~~~~~~~~~~~~
http://doc.rpc.gandi.net/
Config
~~~~~~
......
......@@ -12,19 +12,22 @@ version = re.search(
).group(1)
with open("README.rst", "rb") as f:
long_descr = f.read().decode("utf-8")
with open('README.rst', 'rb') as f:
long_descr = f.read().decode('utf-8')
setup(
name = "zone2gandi",
packages = ["zone2gandi"],
name = 'zone2gandi',
packages = ['zone2gandi'],
install_requires=[
'PyYAML', 'json2yaml',
],
entry_points = {
"console_scripts": ['zone2gandi = zone2gandi.zone2gandi:main']
'console_scripts': ['zone2gandi = zone2gandi.zone2gandi:main']
},
version = version,
description = "Utility to push zone files up to Gandi DNS.",
description = 'Utility to push zone files up to Gandi DNS.',
long_description = long_descr,
author = "Kevin Lyda",
author_email = "kevin@ie.suberic.net",
url = "https://gitlab.com/lyda/zone2gandi",
author = 'Kevin Lyda',
author_email = 'kevin@ie.suberic.net',
url = 'https://gitlab.com/lyda/zone2gandi',
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment