forked from stellar/stellar-account-prometheus-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.17 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="stellar-account-prometheus-exporter",
version="0.0.4",
author="Stellar Development Foundation",
author_email="[email protected]",
description="Export stellar account balance in prometheus format",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stellar/stellar-account-prometheus-exporter",
include_package_data=True,
keywords=["prometheus", "exporter", "stellar"],
license="Apache Software License 2.0",
entry_points={
'console_scripts': [
'stellar-account-prometheus-exporter=stellar_account_prometheus_exporter:run',
],
},
packages=setuptools.find_packages(),
install_requires=["prometheus_client", "requests", "pyyaml"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)