Last active
April 17, 2022 21:48
-
-
Save njourdane/94e123906e86448e755f04a1ad798d77 to your computer and use it in GitHub Desktop.
Poetry issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "cadquery" | |
version = "2.1" | |
description = "A python parametric CAD scripting framework based on OCCT" | |
authors = [ "Parametric Products Intellectual Holdings, LLC" ] | |
[tool.poetry.dependencies] | |
python = "^3.8" | |
ocpvtk = [ | |
{ python = "~3.8", markers = "platform_system == 'Linux'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp38-cp38-manylinux_2_31_x86_64.whl" }, | |
{ python = "~3.9", markers = "platform_system == 'Linux'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp39-cp39-manylinux_2_31_x86_64.whl" }, | |
{ python = "~3.10", markers = "platform_system == 'Linux'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp310-cp310-manylinux_2_31_x86_64.whl" }, | |
{ python = "~3.8", markers = "platform_system == 'Darwin'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp38-cp38-macosx_10_9_x86_64.whl" }, | |
{ python = "~3.9", markers = "platform_system == 'Darwin'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp39-cp39-macosx_10_9_x86_64.whl" }, | |
{ python = "~3.10", markers = "platform_system == 'Darwin'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp310-cp310-macosx_10_9_x86_64.whl" }, | |
{ python = "~3.8", markers = "platform_system == 'Windows'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp38-cp38-win_amd64.whl" }, | |
{ python = "~3.9", markers = "platform_system == 'Windows'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp39-cp39-win_amd64.whl" }, | |
{ python = "~3.10", markers = "platform_system == 'Windows'", url = "https://github.com/roipoussiere/OCP/releases/download/7.5.3/ocp_vtk-7.5.3.0-cp310-cp310-win_amd64.whl" } | |
] | |
ezdxf = "^0.17.2" | |
multimethod = "^1.8" | |
nlopt = "^2.7.1" | |
nptyping = "^2.0.0" | |
typish = "^1.9.3" | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment