-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco Pracucci
committed
Aug 30, 2018
1 parent
b9a79f8
commit 7aa9996
Showing
2 changed files
with
10 additions
and
2 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
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 |
---|---|---|
|
@@ -4,15 +4,20 @@ | |
if sys.version_info.major < 3: | ||
raise RuntimeError('Installing requires Python 3 or newer') | ||
|
||
# Read the long description from README.md | ||
with open('README.md') as file: | ||
long_description = file.read() | ||
|
||
setup( | ||
name = 'prometheus-pgbouncer-exporter', | ||
packages = ['prometheus_pgbouncer_exporter'], | ||
version = '1.0.0', | ||
version = '1.0.1', | ||
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/1.0.0.tar.gz', | ||
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/1.0.1.tar.gz', | ||
keywords = ['prometheus', 'pgbouncer'], | ||
classifiers = [], | ||
python_requires = ' >= 3', | ||
|