-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 835 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="Thread-Everything",
version="0.3.0",
author="Sergiu Han, Jihan Li",
author_email="sergiudm@outlook.com, 12211820@mail.sustech.edu.cn",
description="An easy-to-use interface to run threads from different machines",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://sergiudm.github.io/Thread-Everything/",
packages=find_packages(include=["detective", "detective.*"]),
install_requires=["opencv-python", "opencv-python-headless", "mediapipe", "pygame"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
entry_points={},
)