-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.01 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.01 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
from setuptools import setup
_VERSION = '0.18.3'
_DESCRIPTION = 'Read/Write data to and from a Hawkular metric server.'
setup(name='hawkular-client-cli',
version=_VERSION,
description='Hawkular client cli',
long_description=_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Monitoring',
],
url='http://github.com/yaacov/hawkular-client-cli',
author='Yaacov Zamir',
author_email='yzamir@redhat.com',
license='Apache License 2.0',
packages=['hawkular_client_cli'],
install_requires=[
'future>=0.15.0',
'python-dateutil>=2.0.0',
'PyYAML>=3.0',
'hawkular-client>=0.5.2',
],
entry_points={
'console_scripts': ['hawkular-cli=hawkular_client_cli.command_line:main'],
},
include_package_data=True,
zip_safe=False)