mirror of
https://github.com/meerk40t/meerk40t.git
synced 2025-02-27 20:30:12 +00:00
21 lines
508 B
Python
21 lines
508 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
install_requires=[
|
|
"pyusb>=1.0.0",
|
|
"pyserial",
|
|
"numpy",
|
|
],
|
|
extras_require={
|
|
"all": [
|
|
"wxPython>=4.0.0",
|
|
"Pillow>=7.0.0",
|
|
"opencv-python-headless>=3.4.0.0",
|
|
"ezdxf>=0.14.0",
|
|
],
|
|
"gui": ["wxPython>=4.0.0", "Pillow>=7.0.0"],
|
|
"cam": ["opencv-python-headless>=3.4.0.0"],
|
|
"dxf": ["ezdxf>=0.14.0"],
|
|
"camhead": ["opencv-python>=3.4.0.0"],
|
|
},
|
|
)
|