-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
36 lines (34 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name="tungsten-prometheus-exporter",
version="0.1.2",
description="Scrape TungstenFabric/OpenContrail analytics UVEs and provide prometheus endpoint",
author="Jean-Philippe Braun",
author_email="[email protected]",
maintainer="Jean-Philippe Braun",
maintainer_email="[email protected]",
url="http://www.github.com/cloudwatt/tungsten-prometheus-exporter",
packages=find_packages(),
install_requires=[
"requests",
"prometheus_client~=0.7.0",
"jsonpath-rw~=1.4.0",
"confuse~=1.0.0",
"gevent~=1.4.0",
"keystoneauth1~=3.15.0",
],
scripts=[],
license="MIT",
entry_points={
"console_scripts": [
"tungsten-prometheus-exporter = tungsten_prometheus_exporter.main:main"
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
)