Merge pull request 'feat: Add cq-editor as dev dependency' (#8) from chore/version into main
Reviewed-on: #8
This commit is contained in:
commit
9563501327
|
@ -1,6 +1,7 @@
|
|||
# Cosplay
|
||||
|
||||
This is the design repository for NorCal Hakkero Factory No. 1.
|
||||
This is the design repository for NorCal Hakkero Factory No. 1, where we use
|
||||
parametric CAD to make cosplay props.
|
||||
|
||||
## Development
|
||||
|
||||
|
@ -15,6 +16,12 @@ and this should succeed
|
|||
python3 -c "import nhf"
|
||||
```
|
||||
|
||||
To visualize an object, create a file `visualize.py`, and run `cq-editor`:
|
||||
|
||||
``` sh
|
||||
python3 -m cq_editor visualize.py
|
||||
```
|
||||
|
||||
## Testing
|
||||
|
||||
Run all tests with
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -8,13 +8,21 @@ readme = "README.md"
|
|||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
cadquery = {git = "https://github.com/CadQuery/cadquery.git"}
|
||||
build123d = "^0.5.0"
|
||||
numpy = "^1.26.4"
|
||||
#build123d = "^0.5.0"
|
||||
numpy = ">=2,<3"
|
||||
colorama = "^0.4.6"
|
||||
|
||||
# cadquery dependency
|
||||
multimethod = "^1.12"
|
||||
scipy = "^1.14.0"
|
||||
typish = "^1.9.3"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
cq-editor = {git = "https://github.com/CadQuery/CQ-editor.git"}
|
||||
pyqt5 = "^5.15.11"
|
||||
logbook = "^1.8.0"
|
||||
spyder = "^5"
|
||||
pyqtgraph = "^0.13.7"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
|
|
Loading…
Reference in New Issue