Added entry point und setup.py

This commit is contained in:
Alexander Werner 2018-11-03 17:23:25 +01:00
parent 51245c4ad9
commit 851eccbe9a
2 changed files with 17 additions and 0 deletions

2
carom/cli.py Normal file
View File

@ -0,0 +1,2 @@
def main():
pass

15
setup.py Normal file
View File

@ -0,0 +1,15 @@
from setuptools import setup
setup(name='carom-client',
version='0.1',
description='Carom-Client new version',
url='https://git.einsle.de/carom2/carom-client',
author='Robert Einsle',
author_email='robert@einsle.de',
license='MIT',
packages=['carom'],
zip_safe=False,
entry_points = {
'console_scripts': ['carom-client=carom.cli:main'],
},
)