add setup file

This commit is contained in:
2021-04-03 21:43:43 +02:00
parent ae0a8aa4f0
commit d5789b5e6c
3 changed files with 21 additions and 1 deletions

8
setup.py Normal file
View File

@@ -0,0 +1,8 @@
from setuptools import setup
setup(
name='ControlDeck',
py_modules=['controldeck'],
entry_points={
'console_scripts': ['controldeck = controldeck:main', ],},
)