1234567891011121314151617181920212223242526 |
- # -*- coding: utf-8-*-
- #
- # This file is part of stdd, the simple time display daemon,
- # written by Helmut Pozimski <helmut@pozimski.eu>,
- # licensed under the 3-clause BSD license
- # -*- coding: utf8 -*-
- """ setup.py for stdd using distutils. """
- from distutils.core import setup
- setup(
- name="stdd",
- version="0.9.8",
- author_email="helmut@pozimski.eu",
- description="stdd, simple time display daemon",
- long_description=("stdd is a small daemon written in python which displays"
- " the current time on a 7 segment display from Adafruit "
- "attached via i2c"),
- license="3-clause BSD license",
- packages=["stddlib"],
- scripts=["stdd"],
- data_files=[('/etc', ['config/stdd.json']),
- ('/etc/default', ['default/stdd'])]
- )
|