-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set long_description_content_type as it's required now by Pypi
- Loading branch information
Esteban Sánchez
committed
Jan 7, 2020
1 parent
80fd610
commit 156702c
Showing
1 changed file
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,20 +9,21 @@ | |
long_description = file.read() | ||
|
||
setup( | ||
name = 'prometheus-pgbouncer-exporter', | ||
packages = ['prometheus_pgbouncer_exporter'], | ||
version = '2.0.2', | ||
description = 'Prometheus exporter for PgBouncer', | ||
long_description = long_description, | ||
author = 'Marco Pracucci', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter', | ||
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/2.0.1.tar.gz', | ||
keywords = ['prometheus', 'pgbouncer'], | ||
classifiers = [], | ||
python_requires = ' >= 3', | ||
install_requires = ['psycopg2 == 2.7.3.2', 'prometheus_client==0.0.21', 'python-json-logger==0.1.5', 'PyYAML==3.12'], | ||
entry_points = { | ||
name = 'prometheus-pgbouncer-exporter', | ||
packages = ['prometheus_pgbouncer_exporter'], | ||
version = '2.0.2', | ||
description = 'Prometheus exporter for PgBouncer', | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
author = 'Marco Pracucci', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter', | ||
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/2.0.1.tar.gz', | ||
keywords = ['prometheus', 'pgbouncer'], | ||
classifiers = [], | ||
python_requires = ' >= 3', | ||
install_requires = ['psycopg2 == 2.7.3.2', 'prometheus_client==0.0.21', 'python-json-logger==0.1.5', 'PyYAML==3.12'], | ||
entry_points = { | ||
'console_scripts': [ | ||
'pgbouncer-exporter=prometheus_pgbouncer_exporter.cli:main', | ||
] | ||
|