setup.py 430 B

123456789101112131415
  1. from setuptools import setup
  2. setup(
  3. name='mqtt2graphite',
  4. description="This program subscribes to any number of MQTT topics, extracts a value from the messages' payload and sends that off to Graphite via Carbon over a UDP socket.",
  5. py_modules=['mqtt2graphite'],
  6. install_requires=['paho-mqtt'],
  7. entry_points={
  8. 'console_scripts': [
  9. "mqtt2graphite = mqtt2graphite:main",
  10. ]
  11. },
  12. )