-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpyproject.toml
42 lines (34 loc) · 988 Bytes
/
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
[build-system]
requires = ["poetry-core", "versioneer[toml]"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "probe_basic"
authors = [
"Chris Polanski <[email protected]>",
]
description = "Probe Basic - A QtPyVCP based Virtual Control Panel for LinuxCNC"
readme = "README.md"
version = "0.0"
packages = [
{ include = "probe_basic", from = "src" },
{ include = "probe_basic_lathe", from = "src" },
{ include = "widgets", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.scripts]
probe_basic = "probe_basic:main"
probe_basic_lathe = "probe_basic_lathe:main"
[tool.poetry.plugins]
[tool.poetry.plugins."qtpyvcp.vcp"]
probe_basic = "probe_basic"
probe_basic_lathe = "probe_basic_lathe"
[tool.poetry.plugins."qtpyvcp.widgets"]
probe_basic_widgets = "widgets"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "probe_basic/_version.py"
versionfile_build = "probe_basic/_version.py"
tag_prefix = ""
parentdir_prefix = ""