forked from clach04/python-tuya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (58 loc) · 1.7 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import codecs
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import pytuya
if len(sys.argv) <= 1:
print("""
Suggested setup.py parameters:
* build
* install
* sdist --formats=zip
* sdist # NOTE requires tar/gzip commands
PyPi:
twine upload dist/*
""")
here = os.path.abspath(os.path.dirname(__file__))
readme_filename = os.path.join(here, 'README.md')
if os.path.exists(readme_filename):
with codecs.open(readme_filename, encoding='utf-8') as f:
long_description = f.read()
else:
long_description = None
setup(
name='pytuya',
author=pytuya.__author__,
version=pytuya.__version__,
description='Python interface to ESP8266MOD WiFi smart devices from Shenzhen Xenon',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/clach04/python-tuya',
author_email='',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Home Automation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Home Automation',
],
keywords='home automation',
packages=['pytuya', 'pytuya.cli'],
platforms='any',
install_requires=[
'pyaes', # NOTE this is optional, AES can be provided via PyCrypto or PyCryptodome
'pyyaml',
'click'
],
entry_points={
'console_scripts': ['pytuya=pytuya.cli:main'],
}
)