AIUO/ober/setup.py

17 lines
473 B
Python
Raw Normal View History

2020-03-13 13:15:38 +00:00
#!/usr/bin/env python3
from setuptools import setup
setup(name="AIUO-ober",
version="0.3",
2020-03-13 13:15:38 +00:00
description="Automatisch In- en Uitschakelen Ober Ober",
author="Chris Josten",
author_email="chris@netsoj.nl",
packages=["ober"],
install_requires=["msgpack-rpc-python"],
2020-03-13 13:15:38 +00:00
entry_points={
"console_scripts": {
"aiuo-shutdown = ober.autoshutdown:start_main"
}
}
)