-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (37 loc) · 1.21 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
import codecs
from setuptools import find_packages
from setuptools import setup
setup(
name="prometheus-freeswitch-exporter",
version="1.0.1",
author="Lorenz Schori",
author_email="[email protected]",
description=("FreeSWITCH exporter for the Prometheus monitoring system."),
long_description=codecs.open('README.rst', encoding='utf-8').read(),
license="Apache Software License 2.0",
keywords="prometheus exporter network monitoring voip",
url="https://github.com/znerol/prometheus-freeswitch-exporter",
package_dir={"": "src"},
packages=find_packages('src'),
entry_points={
'console_scripts': [
'freeswitch_exporter=freeswitch_exporter.cli:main',
],
},
test_suite="tests",
install_requires=[
"asgiref",
"prometheus_client>=0.0.11",
"pyyaml",
"requests",
'Werkzeug',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)