-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 811 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
36
37
38
39
40
[project]
name = "pysdfscad"
version = "0.1.0"
description = ""
authors = [{ name = "Alex Davies", email = "traverse.da@gmail.com" }]
requires-python = ">=3.10,<3.12"
readme = "README.md"
dependencies = [
"sdf",
"lark>=1.1.5,<2",
"loguru>=0.6.0,<0.7",
"click>=8.1.3,<9",
"appdirs>=1.4.4,<2",
"astor>=0.8.1,<0.9",
]
[project.scripts]
pysdfscad = "pysdfscad.main:main"
pysdfscad_qtgui = "pysdfscad_qtgui.main:main"
[project.optional-dependencies]
gui = [
"pyside6>=6.9.3",
"qscintilla>=2.13.3,<3",
"pyqtgraph>=0.13.1,<0.14",
"pyopengl>=3.1.6,<4",
]
dev = [
"pytest>=7.2.0,<8",
"black>=22.12.0,<23",
]
[tool.uv]
package = true
[tool.uv.sources]
sdf = { git = "https://github.com/fogleman/sdf.git" }
[tool.setuptools]
packages = ["pysdfscad", "pysdfscad_qtgui"]