meerk40t/setup.py
2023-06-13 15:31:04 -07:00

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"],
},
)