-
Notifications
You must be signed in to change notification settings - Fork 50
/
pyproject.toml
58 lines (48 loc) · 1.53 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
52
53
54
55
56
57
58
[build-system]
requires = ["poetry-core", "versioneer[toml]"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "qtpyvcp"
authors = [
"Kurt Jacobson <[email protected]>",
"TurBoss <[email protected]>",
"Chris Polanski <[email protected]>",
"Joco <[email protected]>",
]
description = "Qt and Python based Virtual Control Panel framework for LinuxCNC."
readme = "README.md"
version = "0.0"
packages = [
{ include = "examples", from = "src" },
{ include = "qtpyvcp", from = "src" },
{ include = "video_tests", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.scripts]
qtpyvcp = "qtpyvcp.app:main"
qcompile = "qtpyvcp.tools.qcompile:main"
editvcp = "qtpyvcp.tools.editvcp:main"
plasma_tooldbpipe = "qtpyvcp.tools.plasma_tooldbpipe:main"
plasma_gcode_preprocessor = "qtpyvcp.tools.plasma_gcode_preprocessor:main"
tool_db_backend = "qtpyvcp.tools.tool_db_backend:main"
tbl2qsl = "qtpyvcp.tools.tbl2sql:main"
mini = "examples.mini:main"
brender = "examples.brender:main"
vtk_test = "video_tests.vtk_test:main"
qtpyvcp_test = "video_tests.qtpyvcp_test:main"
[tool.poetry.plugins]
[tool.poetry.plugins."qtpyvcp.example_vcp"]
mini = "examples.mini"
brender = "examples.brender"
actions = "examples.actions"
[tool.poetry.plugins."qtpyvcp.test_vcp"]
vtk_test = "video_tests.vtk_test"
qtpyvcp_test = "video_tests.qtpyvcp_test"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "qtpyvcp/_version.py"
versionfile_build = "qtpyvcp/_version.py"
tag_prefix = ""
parentdir_prefix = ""