-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (50 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
66 lines (50 loc) · 1.38 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
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "probe_basic"
authors = [
"Chris Polanski <lcvette1@gmail.com>",
]
description = "Probe Basic - A QtPyVCP based Virtual Control Panel for LinuxCNC"
readme = "README.md"
version = "0.0.0"
dynamic = ["version"]
packages = [
{ include = "probe_basic", from = "src" },
{ include = "probe_basic_lathe", from = "src" },
{ include = "widgets", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.docs.dependencies]
Sphinx = ">=4.0"
sphinx_rtd_theme = ">=1.0"
[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 = ""
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)"
format-jinja = """
{%- if distance == 0 -%}
{{ base }}
{%- else -%}
{{ base }}+{{ distance }}.g{{ commit }}
{%- endif -%}
"""