forked from ns1/ns1-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.43 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from codecs import open
from os import path
import ns1
cwd = path.abspath(path.dirname(__file__))
with open(path.join(cwd, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="ns1-python",
# flake8: noqa
version=ns1.version,
description="Python SDK for the NS1 DNS platform",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
# contact information
author="NS1 Developers",
author_email="[email protected]",
url="https://github.com/ns1/ns1-python",
packages=find_packages(exclude=["tests", "examples"]),
setup_requires=["pytest-runner", "wheel",],
tests_require=["pytest", "pytest-pep8", "pytest-cov", "mock",],
keywords="dns development rest sdk ns1 nsone",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: Name Service (DNS)",
],
)