setup.py 471 B

123456789101112131415161718
  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=[
  7. 'paho-mqtt',
  8. 'supervisor',
  9. ],
  10. entry_points={
  11. 'console_scripts': [
  12. "mqtt2graphite = mqtt2graphite:main",
  13. ]
  14. },
  15. )