forked from ns1/ns1-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.2 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.2 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
import sys
from version import VERSION
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
path, script = os.path.split(sys.argv[0])
os.chdir(os.path.abspath(path))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'ns1cli'))
setup(
name='ns1cli',
version=VERSION,
description='NS1 command line interface',
author='Shannon Weyrick',
author_email='sweyrick@ns1.com',
url='https://ns1.com/',
packages=['ns1cli', 'ns1cli.commands'],
scripts=['bin/ns1'],
entry_points={
'console_scripts': [
'ns1=ns1cli.cli:main'
],
},
install_requires=[
'docopt==0.6.1',
'nsone==0.9.2',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
'Intended Audience :: System Administrators',
"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.3",
])