forked from eXamadeus-zz/godaddypy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.06 KB
/
setup.py
File metadata and controls
31 lines (27 loc) · 1.06 KB
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
#!/usr/bin/env python
from setuptools import setup
from godaddypy import __version__
setup(name='GoDaddyPy',
version=__version__,
description='A very simple python client used to update the IP address in A records for GoDaddy managed domains.',
author='Julian Coy',
author_email='julian.calvin.coy@gmail.com',
url='https://github.com/eXamadeus',
packages=['godaddypy'],
install_requires=[
'requests>=2.4'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: Name Service (DNS)',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
])