-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 847 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='karcher-home',
packages=['karcher'],
include_package_data=True,
version='0.5.1',
license='MIT',
description='Kärcher Home Robots client',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Lauris BH',
author_email='[email protected]',
url='https://github.com/lafriks/python-karcher',
download_url='https://github.com/lafriks/python-karcher/releases/download/v0.5.1/karcher-home-0.5.1.tar.gz',
platforms='any',
install_requires=[
'click',
'aiohttp',
'paho-mqtt<2',
'cryptography',
'protobuf'
],
entry_points='''
[console_scripts]
karcher-home=karcher.cli:safe_cli
''',
)