prometheus-immich-exporter/setup.py

27 lines
964 B
Python
Raw Normal View History

2020-09-29 11:10:15 +02:00
from setuptools import setup
2020-09-29 11:46:09 +02:00
with open("README.md", "r") as fh:
long_description = fh.read()
2020-09-29 11:10:15 +02:00
setup(
name='prometheus-qbittorrent-exporter',
packages=['qbittorrent_exporter'],
2021-07-17 23:19:38 +02:00
version='1.2.0',
2020-09-29 11:46:09 +02:00
long_description=long_description,
long_description_content_type="text/markdown",
2020-09-29 11:10:15 +02:00
description='Prometheus exporter for qbittorrent',
author='Esteban Sanchez',
author_email='esteban.sanchez@gmail.com',
url='https://github.com/esanchezm/prometheus-qbittorrent-exporter',
2020-10-24 10:39:49 +02:00
download_url='https://github.com/esanchezm/prometheus-qbittorrent-exporter/archive/1.1.0.tar.gz',
2020-09-29 11:10:15 +02:00
keywords=['prometheus', 'qbittorrent'],
classifiers=[],
python_requires='>=3',
2022-01-11 20:56:54 +01:00
install_requires=['attrdict==2.0.1', 'qbittorrent-api==2022.1.27', 'prometheus_client==0.12.0 ', 'python-json-logger==2.0.2'],
2020-09-29 11:10:15 +02:00
entry_points={
'console_scripts': [
'qbittorrent-exporter=qbittorrent_exporter.exporter:main',
]
}
)