prometheus_poudriere/setup.py

21 lines
592 B
Python
Raw Permalink Normal View History

from setuptools import setup
setup(
name='prometheus_poudriere',
description='A prometheus exporter for poudriere',
author='phryk',
url='https://rnd.phryk.net/phryk-evil-mad-sciences-llc/prometheus_poudriere/',
license='GPLv3',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
python_requires='>=3.6',
install_requires=[
'docopt',
'prometheus-client',
],
scripts=['bin/prometheus_poudriere']
)