setup.py 661 B

12345678910111213141516171819202122
  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.1",
  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 via i2c"),
  15. license="3-clause BSD license",
  16. packages=["adafruit_7segment", "stddlib"],
  17. scripts=["stdd"],
  18. data_files=[('/etc', ['config/stdd.conf'])]
  19. )