-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 926 Bytes
/
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
from setuptools import setup
setup(
name="dynadotpy",
version="0.1.0",
description='Simple Python wrapper for dynadot.com v2 API.',
long_description='Simple Python wrapper for dynadot.com v2 API.',
keywords="python, dynadot",
author="Chris Jones <[email protected]>",
author_email="[email protected]",
url="https://github.com/brack3t/dynadotpy",
license="BSD",
packages=["dynadotpy"],
zip_safe=False,
install_requires=["requests"],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2 :: Only",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet",
"Intended Audience :: Information Technology"
],
)