-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 992 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 992 Bytes
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
from setuptools import setup, find_packages
from os import path
with open(path.join(path.abspath(path.dirname(__file__)), 'mx_exporter/README.md'), encoding='utf-8') as f:
detail_description = f.read()
setup(
name='mx-exporter',
version='2.2.6',
author='Metax Developers',
author_email="support-sw@metax-tech.com",
description='MetaX prometheus data exporter',
long_description=detail_description,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"Operating System :: OS Independent",
'Topic :: System :: Monitoring'
],
packages=find_packages(),
include_package_data=True,
package_data={'mx_exporter': ['./*']},
python_requires=">=3.0",
install_requires=[
'prometheus_client>=0.7.0',
'grpcio',
'protobuf>=3.12.0'
],
entry_points={
'console_scripts': [
'mx-exporter=mx_exporter:main',
],
},
)