-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 989 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
26
27
28
29
30
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='prometheus-dyson-exporter',
packages=['dyson_exporter'],
version='1.0.0',
long_description=long_description,
long_description_content_type="text/markdown",
description='Prometheus exporter for Dyson Fan Products leveraging Libdyson (https://github.com/shenxn/libdyson)',
author='Zachary Cohen',
author_email='[email protected]',
url='https://github.com/zkhcohen/prometheus-dyson-exporter',
download_url='https://github.com/zkhcohen/prometheus-dyson-exporter/archive/refs/tags/1.0.0.tar.gz',
keywords=['prometheus', 'dyson'],
classifiers=[],
python_requires='>=3',
install_requires=[
'libdyson==0.8.9',
'prometheus-client==0.13.1',
'python_json_logger==2.0.2'
],
entry_points={
'console_scripts': [
'dyson-exporter=dyson_exporter.exporter:main',
]
}
)