17 lines
470 B
Python
17 lines
470 B
Python
#!/usr/bin/env python3
|
|
from setuptools import setup
|
|
|
|
setup(name="AIUO-ober",
|
|
version="0.1",
|
|
description="Automatisch In- en Uitschakelen Ober Ober",
|
|
author="Chris Josten",
|
|
author_email="chris@netsoj.nl",
|
|
packages=["ober"],
|
|
install_requires=["aio_msgpack_rpc"],
|
|
entry_points={
|
|
"console_scripts": {
|
|
"aiuo-shutdown = ober.autoshutdown:start_main"
|
|
}
|
|
}
|
|
)
|