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-02 16:18:11 +02:00
|
|
|
version='1.1.1',
|
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',
|
2021-03-14 10:45:08 +01:00
|
|
|
install_requires=['qbittorrent-api==2021.3.18', 'prometheus_client==0.8.0', 'python-json-logger==0.1.5'],
|
2020-09-29 11:10:15 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'qbittorrent-exporter=qbittorrent_exporter.exporter:main',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|