-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 loc) · 1004 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
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="neopia",
version="0.3.6",
author="RoboticsWare",
author_email="neopia.uz@google.com",
description="Python library for NEOPIA Neobot",
url="https://github.com/roboticsware/pylib_neobot.git",
download_url="https://github.com/roboticsware/pylib_neobot/archive/refs/heads/master.zip",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"pyserial",
"websocket-client",
"pynput",
"opencv-python==4.6.0.66",
"opencv-contrib-python==4.6.0.66",
"speechrecognition",
"pyaudio",
"gtts",
"playsound",
"mediapipe",
],
packages=find_packages(exclude=["examples", "tests"]),
package_data={'neopia': ['model/*.*']},
python_requires=">=3",
zip_safe=False,
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)"
],
keywords=['neopia', 'neobot', 'neosoco'],
)