setup.py 711 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8-*-
  2. #
  3. # This file is part of stdd, the simple time display daemon,
  4. # written by Helmut Pozimski <helmut@pozimski.eu>,
  5. # licensed under the 3-clause BSD license
  6. # -*- coding: utf8 -*-
  7. from distutils.core import setup
  8. setup(
  9. name="stdd",
  10. version="0.9.3",
  11. author_email="helmut@pozimski.eu",
  12. description="stdd, simple time display daemon",
  13. long_description=("stdd is a small daemon written in python which displays"
  14. "the current time on a 7 segment display from Adafruit attached "
  15. "via i2c"),
  16. license="3-clause BSD license",
  17. packages=["adafruit_7segment", "stddlib"],
  18. scripts=["stdd"],
  19. data_files=[('/etc', ['config/stdd.conf'])]
  20. )