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