-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "layerforge"
version = "0.1.0"
description = "A 3D Model Slicing and SVG Generation Application"
authors = ["Caitlyn O'Hanna <[email protected]>"]
readme = "README.md"
packages = [{include = "layerforge"}]
[tool.poetry.dependencies]
Rtree = "^1.2"
click = "^8.1"
networkx = "^3.3"
numpy = "^2.0"
python = "^3.12"
scipy = "^1.14"
shapely = "^2.0"
svgwrite = "^1.4"
trimesh = "^4.4"
pydantic = "^2.6"
[tool.poetry.extras]
full = [
"Rtree",
"networkx",
"numpy",
"scipy",
"shapely",
"svgwrite",
"trimesh",
"pydantic",
]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocs-material = "*"
mkdocstrings-python = "*"
mkdocs-gen-files = "*"
mkdocs-include-markdown-plugin = "*"
mkdocs-click = "*"
mkdocs-literate-nav = "*"
mkdocs-section-index = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
hypothesis = "*"
[tool.poetry.scripts]
layerforge = "layerforge.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true