-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (33 loc) · 1.11 KB
/
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
32
33
34
35
36
"""
* Copyright (c) 2019-2023 Sinric. All rights reserved.
* Licensed under Creative Commons Attribution-Share Alike (CC BY-SA)
*
* This file is part of the Sinric Pro (https://github.com/sinricpro/)
"""
from setuptools import setup
import sys
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 or older is not supported')
VERSION = "2.7.6"
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name="sinricpro",
version=VERSION,
author="sinric",
author_email="[email protected]",
maintainer='sinric',
maintainer_email='[email protected]',
description="A python package for Sinric Pro",
long_description=long_description,
url="https://github.com/sinricpro/python-sdk",
packages=['sinric', "sinric.helpers"],
install_requires=["websockets==10.1",
"loguru",
"importlib_metadata; python_version < '3.8'"],
keywords=['sinric', 'sinric-pro', 'alexa', 'google home', 'smartthings'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)