-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 1 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
import os
from setuptools import setup
setup(
name = "openstack_exporter",
version = "0.0.1",
author = "George Vauter",
author_email = "george.vauter@inin.com ",
description = ("OpenStack exporter for the Prometheus monitoring system."),
long_description = ("See https://github.com/gvauter/prometheus_openstack/blob/master/README.md for documentation."),
license = "Apache Software License 2.0",
keywords = "prometheus exporter monitoring openstack metrics",
url = "https://github.com/gvauter/prometheus_openstack",
scripts = ["scripts/openstack_exporter"],
packages=['openstack_exporter'],
test_suite="tests",
install_requires=["prometheus_client>=0.0.11", "pyyaml", "python-novaclient"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)