-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.1 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
[tool.poetry]
authors = ["J C Lawrence <[email protected]>"]
description = "Tools for generating printable files for 18xx games."
license = "GPL-3.0-only"
name = "xxpaper"
packages = [{include = "xxpaper"}]
readme = "README.rst"
repository = "https://github.com/clearclaw/cfgstack"
version="0.0"
[tool.poetry.dependencies]
python = "^3.8"
cfgstack = "^0.2.post2"
clip-py = "^0.3.2"
findfile-path = "^0.2.post3"
logtool = "^0.4.post1"
path = "^16.14.0"
pyyaml = "^6.0.1"
raven = "^6.10.0"
reportlab = "^4.2.2"
toml = "^0.10.2"
[tool.poetry-dynamic-versioning]
dirty = true
enable = true
format-jinja = """
{%- if dirty != "dirty" -%}
{{ serialize_pep440(base, stage, revision, distance|string) }}
{%- else -%}
{{ serialize_pep440(base, stage, revision, dev=distance, metadata=[commit]) }}
{%- endif -%}
"""
metadata = true
style = "pep440"
tagged-metadata = true
pattern = "default-unprefixed"
vcs = "git"
[tool.poetry.scripts]
xxpaper = "xxpaper.main:main"
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]