-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.16 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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "pythonopenscad"
version = "2.2.19"
authors = [
{ name = "Gianni Mariani", email = "gianni@mariani.ws" },
]
description = "Yet Another Python OpenSCAD API. This is a thin wrapper for generating OpenSCAD 3D model scripts."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
]
dependencies = [
"distributed>=2025.1.0",
"numpy>=2.2.1",
"manifold3d>=3.1.0",
"mapbox-earcut>=1.0.3",
"mapbox>=0.18.1",
"frozendict>=2.3.0",
"fonttools>=4.57.0",
"pillow>=11.0.0",
"uharfbuzz>=0.48.0",
"datatrees>=0.2.1",
"numpy-stl>=3.2.0",
"pyopengl>=3.1.9",
"pyglm>=2.8.0",
"hershey-fonts>=2.1.0",
"anchorscad-linear>=0.1.1",
]
[project.urls]
Homepage = "https://github.com/owebeeone/pythonopenscad"
"Bug Tracker" = "https://github.com/owebeeone/pythonopenscad/issues"
[tool.hatch.envs.test]
dependencies = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]