-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (18 loc) · 806 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
from setuptools import setup
with open("README.md", "r", encoding='UTF-8') as f:
long_description = f.read()
setup(
name='fubuki-iot',
version='0.3',
python_requires=">=3.8",
packages=['iot', 'iot.core', 'iot.core.hardware', 'iot.core.acoustics', 'iot.core.semantics', 'iot.integration'],
install_requires=['keyboard>=0.13.5', 'loguru>=0.6.0', 'paho-mqtt>=1.6.1', 'PyAudio>=0.2.12', 'pydantic>=1.10.2',
'python-dotenv>=0.21.0', 'requests>=2.28.1'],
url='https://github.com/littlebutt/fubuki-iot',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT License',
author='littlebutt',
author_email='[email protected]',
description='An accessable Iot Terminal implementated by Python'
)