forked from box/wavectl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (53 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import print_function
from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Libraries :: Python Modules',
]
install_requires = [
"argcomplete",
"future",
"GitPython",
"python-dateutil",
"six",
"termcolor",
"wavefront-api-client>=2.3.1"]
test_require = [
"mock",
"recommonmark",
"Sphinx",
"sphinxcontrib-programoutput",
]
base_dir = os.path.dirname(__file__)
setup(
name="wavectl",
version="0.3.0",
description="Command Line Client For Wavefront",
long_description=open(os.path.join(base_dir, 'README.md'),).read(),
long_description_content_type='text/markdown',
url="https://github.com/box/wavectl",
author="Box",
author_email="oss@box.com",
keywords=["Wavefront", "Wavefront Public API", "wavectl", "cli"],
packages=find_packages(),
install_requires=install_requires,
test_require=test_require,
entry_points={
'console_scripts': [
'wavectl = wavectl.main:main',
]
},
classifiers=CLASSIFIERS,
license='Apache Software License, Version 2.0, http://www.apache.org/licenses/LICENSE-2.0',
)