setup.py 807 B

1234567891011121314151617181920212223242526
  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. """ setup.py for stdd using distutils. """
  8. from distutils.core import setup
  9. setup(
  10. name="stdd",
  11. version="0.9.8",
  12. author_email="helmut@pozimski.eu",
  13. description="stdd, simple time display daemon",
  14. long_description=("stdd is a small daemon written in python which displays"
  15. " the current time on a 7 segment display from Adafruit "
  16. "attached via i2c"),
  17. license="3-clause BSD license",
  18. packages=["stddlib"],
  19. scripts=["stdd"],
  20. data_files=[('/etc', ['config/stdd.json']),
  21. ('/etc/default', ['default/stdd'])]
  22. )