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
|
import sys
from setuptools import setup
MAJOR_VERSION = '1'
MINOR_VERSION = '0'
MICRO_VERSION = '0'
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
setup(name='prometheus_tp_link_exporter',
version=VERSION,
description="Prometheus TP-Link exporter.",
url='https://gitlab.com/wigust/prometheus-tp-link-exporter',
author='Oleg Pykhalov',
author_email='go.wigust@gmail.com',
license='GPLv3',
packages=['prometheus_tp_link_exporter'],
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Development Status :: 5 - Production/Stable',
'Topic :: Office/Business'
],
zip_safe=False,
entry_points={'console_scripts': ['prometheus-tp-link-exporter = prometheus_tp_link_exporter.__main__:main']},
platforms='any')
|