-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 849 Bytes
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
[project]
name = "igniscad"
version = "0.4.1"
license = { file = "LICENSE" }
description = "A wrapper for the build123d library, designed for AI agents."
readme = "README.md"
authors = [
{ name = "CreeperIsASpy", email = "creeperspy@qq.com" },
{ name = "Ext0gu1sher", email = "danielhuang070213@qq.com" }
]
requires-python = ">=3.11"
dependencies = [
"build123d<0.10",
"yacv-server>=0.9.7",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["uv_build>=0.9.24,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
docs = [
"mkdocs>=1.6.1",
"mkdocs-include-markdown-plugin>=7.2.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.3",
]
test = [
"pytest>=9.0.2",
]