Skip to content

Commit

Permalink
[update] update extra pip package requirement for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
yzqin committed Aug 27, 2023
1 parent f562287 commit 83424f4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@
"ruff",
]

example_requirements = [
"tyro",
"tqdm",
"opencv-python",
"mediapipe",
]

classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down Expand Up @@ -74,14 +81,15 @@ def setup_package():
long_description=readme,
long_description_content_type="text/markdown",
url=url,
license='MIT',
license="MIT",
license_files=("LICENSE",),
packages=packages,
python_requires='>=3.7,<3.11',
python_requires=">=3.7,<3.11",
zip_safe=True,
install_requires=core_requirements,
extras_require={
"dev": dev_requirements,
"example": example_requirements,
},
classifiers=classifiers,
)
Expand Down

0 comments on commit 83424f4

Please sign in to comment.