-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·38 lines (37 loc) · 1.08 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
from setuptools import setup
setup(
name = 'metrics2mqtt',
packages = ['metrics2mqtt'],
version = '0.1.18',
license='MIT',
description = 'Publish cross-platorm system performance metrics to a MQTT broker',
author_email = 'jjbegin@gmail.com',
url = 'https://github.com/jamiebegin/metrics2mqtt',
download_url = 'https://github.com/jamiebegin/metrics2mqtt/archive/v0.1.18.tar.gz',
keywords = ['mqtt', 'psutil', 'metrics'],
setup_requires = [
'wheel'
],
entry_points = {
'console_scripts': [
'metrics2mqtt = metrics2mqtt.base:main'
]
},
install_requires=[
'jsons',
'psutil',
'paho-mqtt',
'numpy'
],
zip_safe = False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'Topic :: System :: Monitoring',
'Topic :: System :: Logging',
'Topic :: System :: Systems Administration',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)