-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (37 loc) · 1.25 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
#! /usr/bin/env python
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as f:
long_description = f.read()
with open('requirements.txt', encoding='utf8') as f:
install_requires = f.readlines()
setup(
name='tinytuya2mqtt',
version='0.1',
description='A bridge between jasonacox/tinytuya and Home Assistant via MQTT',
long_description_content_type='text/markdown',
long_description=long_description,
author='Matt Black',
author_email='dev@mafro.net',
url='https://github.com/mafrosis/tinytuya2mqtt',
packages=find_packages(exclude=['test']),
package_data={'': ['LICENSE']},
package_dir={'': '.'},
include_package_data=True,
install_requires=install_requires,
license='MIT License',
entry_points={
'console_scripts': [
'tinytuya2mqtt=tinytuya2mqtt.main:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
],
)