forked from canonical/prometheus-openstack-exporter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (22 loc) · 800 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="prometheus_swift_exporter",
version="0.0.4",
author="Jacek Nykis",
description="Exposes high level OpenStack Swift metrics to Prometheus.",
license="GPLv3",
keywords=["prometheus", "openstack", "swift", "exporter"],
url="https://github.com/ilanddev/prometheus-swift-exporter",
scripts=["prometheus-swift-exporter"],
install_requires=["prometheus_client"],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)",
],
)