From b12129f0da219291e52b1725dae24528c882a55e Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 24 Dec 2015 10:59:02 +0000 Subject: Initial commit --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3035917 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from setuptools import setup, find_packages + +setup( + name="prometheus-pgbouncer-exporter", + packages=find_packages(), + entry_points={ + 'console_scripts': [ + 'prometheus-pgbouncer-exporter = prometheus_pgbouncer_exporter.cli:main', + ], + }, +) -- cgit v1.2.3