Skip to content

Commit

Permalink
add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
njourdane committed Apr 16, 2022
1 parent 6217431 commit 9aca9d3
Show file tree
Hide file tree
Showing 2 changed files with 240 additions and 0 deletions.
206 changes: 206 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[tool.poetry]
name = "cadquery"
version = "2.1"
description = "A python parametric CAD scripting framework based on OCCT"
authors = [ "Parametric Products Intellectual Holdings, LLC" ]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://cadquery.readthedocs.io/en/latest/"
repository = "https://github.com/CadQuery/cadquery"
documentation = "https://cadquery.readthedocs.io/en/latest/"
keywords = ["modeling", "cad", "stl", "opencascade", "brep"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering"
]

[tool.poetry.dependencies]
python = "^3.8"
ezdxf = "^0.17.2"
multimethod = "^1.8"
nlopt = "^2.7.1"
nptyping = "^2.0.0"
typish = "^1.9.3"
ocp-vtk = "^7.5.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 9aca9d3

Please sign in to comment.