From e56a7133554ba74f894762c8571f596136a28a42 Mon Sep 17 00:00:00 2001 From: Joel Heaps Date: Fri, 29 Sep 2023 08:02:21 -0500 Subject: [PATCH] Remove legacy setup files --- setup.cfg | 2 -- setup.py | 26 -------------------------- 2 files changed, 28 deletions(-) delete mode 100644 setup.cfg delete mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index b88034e..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[metadata] -description-file = README.md diff --git a/setup.py b/setup.py deleted file mode 100644 index 4512a87..0000000 --- a/setup.py +++ /dev/null @@ -1,26 +0,0 @@ -from setuptools import setup - -with open("README.md", "r") as fh: - long_description = fh.read() - -setup( - name='prometheus-qbittorrent-exporter', - packages=['qbittorrent_exporter'], - version='1.3.0', - long_description=long_description, - long_description_content_type="text/markdown", - description='Prometheus exporter for qbittorrent', - author='Esteban Sanchez', - author_email='esteban.sanchez@gmail.com', - url='https://github.com/esanchezm/prometheus-qbittorrent-exporter', - download_url='https://github.com/esanchezm/prometheus-qbittorrent-exporter/archive/1.3.0.tar.gz', - keywords=['prometheus', 'qbittorrent'], - classifiers=[], - python_requires='>=3,<3.10', - install_requires=['attrdict==2.0.1', 'qbittorrent-api==2023.4.47', 'prometheus_client==0.16.0', 'python-json-logger==2.0.2'], - entry_points={ - 'console_scripts': [ - 'qbittorrent-exporter=qbittorrent_exporter.exporter:main', - ] - } -)