-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.09 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.09 KB
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
import setuptools
VERSION = "1.0.2"
setuptools.setup(
name="puppetdb_exporter",
version=VERSION,
description="Prometheus puppetdb exporter",
author="Florian Chardin",
author_email="othalla.lf@gmail.com",
url="https://github.com/othalla/puppetdb_exporter",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(exclude=['tests*']),
package_data={},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
],
install_requires=[
"pypuppetdb==0.3.3",
"prometheus-client==0.5.0",
],
extras_require={},
entry_points={
'console_scripts': ['puppetdb_exporter=puppetdb_exporter.__init__:main']
}
)