-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·62 lines (51 loc) · 1.5 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
60
61
62
#!/usr/bin/env python2.6
import sys
import setuptools
if sys.version_info >= (3,):
protobuf = 'protobuf>=3.2.0,<4.0.0'
else:
protobuf = 'protobuf>=2.3.0,<4.0.0'
setuptools.setup(
name='riemann-client',
version='7.0.0',
author="Sam Clements",
author_email="[email protected]",
url="https://github.com/borntyping/python-riemann-client",
description="A Riemann client and command line tool",
long_description=open('README.rst').read(),
license="MIT",
packages=[
'riemann_client',
],
install_requires=[
'click>=3.1',
protobuf
],
extras_require={
'docs': [
'sphinx',
'sphinx_rtd_theme'
]
},
entry_points={
'console_scripts': [
'riemann-client = riemann_client.command:main',
]
},
classifiers=[
'Development Status :: 7 - Inactive',
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration'
],
)