You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
592 B
20 lines
592 B
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'] |
|
)
|
|
|