mirror of
https://github.com/jdegenstein/jmwright-CQ-Editor.git
synced 2025-12-19 22:24:19 +01:00
37 lines
694 B
YAML
37 lines
694 B
YAML
package:
|
|
name: cq-editor
|
|
version: {{ environ.get('PACKAGE_VERSION') }}
|
|
|
|
source:
|
|
path: ..
|
|
|
|
build:
|
|
string: {{ 'py'+environ.get('PYTHON_VERSION')}}
|
|
script: python setup.py install --single-version-externally-managed --record=record.txt
|
|
entry_points:
|
|
- cq-editor = cq_editor.__main__:main
|
|
- CQ-editor = cq_editor.__main__:main
|
|
requirements:
|
|
build:
|
|
- python {{ environ.get('PYTHON_VERSION') }}
|
|
- setuptools
|
|
|
|
run:
|
|
- python {{ environ.get('PYTHON_VERSION') }}
|
|
- cadquery=master
|
|
- ocp
|
|
- logbook
|
|
- pyqt=5.*
|
|
- pyqtgraph
|
|
- spyder=5.*
|
|
- path
|
|
- logbook
|
|
- requests
|
|
|
|
test:
|
|
imports:
|
|
- cq_editor
|
|
|
|
about:
|
|
summary: GUI for CadQuery 2
|