-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "CQ-editor"
version = "0.6.dev0"
dependencies = [
"cadquery",
"pyqtgraph",
"spyder>=5.5.6,<6",
"path",
"logbook",
"requests",
"qtconsole>=5.5.1,<5.6.0"
]
requires-python = ">=3.9,<3.13"
authors = [
{ name="CadQuery Developers" }
]
maintainers = [
{ name="CadQuery Developers" }
]
description = "CadQuery plugin to create a mesh of an assembly with corresponding data"
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"
[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"