diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ba0fbd8 --- /dev/null +++ b/setup.py @@ -0,0 +1,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') |
