Skip to content

Commit 9aca9d3

Browse files
committed
add pyproject.toml
1 parent 6217431 commit 9aca9d3

File tree

2 files changed

+240
-0
lines changed

2 files changed

+240
-0
lines changed

poetry.lock

Lines changed: 206 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[tool.poetry]
2+
name = "cadquery"
3+
version = "2.1"
4+
description = "A python parametric CAD scripting framework based on OCCT"
5+
authors = [ "Parametric Products Intellectual Holdings, LLC" ]
6+
license = "Apache-2.0"
7+
readme = "README.md"
8+
homepage = "https://cadquery.readthedocs.io/en/latest/"
9+
repository = "https://github.com/CadQuery/cadquery"
10+
documentation = "https://cadquery.readthedocs.io/en/latest/"
11+
keywords = ["modeling", "cad", "stl", "opencascade", "brep"]
12+
classifiers = [
13+
"Development Status :: 5 - Production/Stable",
14+
"Intended Audience :: Developers",
15+
"Intended Audience :: Science/Research",
16+
"Operating System :: POSIX",
17+
"Operating System :: MacOS",
18+
"Operating System :: Unix",
19+
"Topic :: Software Development :: Libraries :: Python Modules",
20+
"Topic :: Scientific/Engineering"
21+
]
22+
23+
[tool.poetry.dependencies]
24+
python = "^3.8"
25+
ezdxf = "^0.17.2"
26+
multimethod = "^1.8"
27+
nlopt = "^2.7.1"
28+
nptyping = "^2.0.0"
29+
typish = "^1.9.3"
30+
ocp-vtk = "^7.5.3"
31+
32+
[build-system]
33+
requires = ["poetry-core>=1.0.0"]
34+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)