-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "CQ-editor"
version = "0.8.dev0"
dependencies = [
"cadquery",
"PyQt5",
"pyqtgraph",
"qtawesome==1.4.0",
"path",
"logbook",
"requests",
"qtconsole>=5.5.1,<5.7.0",
"packaging"
]
requires-python = ">=3.10,<=3.14"
authors = [
{ name="CadQuery Developers" }
]
maintainers = [
{ name="CadQuery Developers" }
]
description = "Cross-platform CadQuery 3D viewer and optional editor built on PyQt"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["cadquery", "CAD", "engineering", "design"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.scripts]
CQ-editor = "cq_editor.cqe_run:main"
cq-editor = "cq_editor.cqe_run:main"
[project.optional-dependencies]
test = [
"pytest",
"pluggy",
"pytest-qt",
"pytest-mock",
"pytest-repeat",
"pyvirtualdisplay"
]
dev = [
"black",
]
[project.urls]
Repository = "https://github.com/CadQuery/CQ-editor.git"
"Bug Tracker" = "https://github.com/CadQuery/CQ-editor/issues"