-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (27 loc) · 942 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
from distutils.core import setup
setup(
name = 'siro',
packages = ['siro'],
version = '0.4',
license='MIT',
description = 'This is a package for controlling the SIRO SmartHome Devices like rollers.',
author = 'Felix Arnold',
author_email = '[email protected]',
url = 'https://github.com/fear/siro',
download_url = 'https://github.com/fear/siro/archive/0.4.tar.gz',
keywords = ['SmartHome', 'Siro', 'roller', 'home assistant'],
install_requires=[
'asyncio',
],
classifiers=[
'Development Status :: 4 - Beta', # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Utilities',
'Topic :: Home Automation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)