-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
38 lines (34 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Adapted from https://github.com/pypa/sampleproject/blob/60d85f505adab230b8060a19d5841351e5a41bed/setup.py
from setuptools import setup, find_packages
from os import path
setup(
name='saltstack_exporter',
version='0.0.6',
description='Prometheus exporter for Saltstack minions',
url='https://github.com/BonnierNews/saltstack_exporter',
author='BonnierNews',
author_email='',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='saltstack prometheus',
packages=['saltstack_exporter'],
install_requires=['prometheus_client'],
extras_require={
'dev': [],
'test': [],
},
entry_points={
'console_scripts': [
'saltstack_exporter=saltstack_exporter.exporter:main',
],
},
)