-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
setup(
name='prometheus-ss-exporter',
version='2.1.1',
description='prometheus socket statistics exporter',
url='https://github.com/cherusk/prometheus_ss_exporter',
author='Matthias Tafelmeier',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
keywords=[
'monitoring',
'exporter',
'prometheus',
'linux',
'socket statistics',
'kernel statistics',
'network stack',
'ss2'
],
packages=find_packages(),
install_requires=[
'pyroute2==0.7.8',
'Twisted==22.10.0',
'prometheus-client==0.16.0',
'PyYAML==6.0',
'psutil==5.9.5',
'zipp==3.15.0',
'importlib-metadata==6.6.0',
'typing_extensions==4.5.0'
],
entry_points={
'console_scripts': [
'prometheus_ss_exporter=prometheus_ss_exporter.__init__:main',
],
},
)