-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.36 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
[project]
name = "ACT4E-mcdp"
authors = [{ name = "Andrea Censi", email = "AndreaCensi@users.noreply.github.com" }]
dependencies = [
"ACT4E-mcdp",
"coloredlogs",
]
[tool]
[tool.poetry]
name = "ACT4E-mcdp"
version = "0.0.0"
description = ""
authors = ["Andrea Censi <AndreaCensi@users.noreply.github.com>"]
packages = [
{ from = "src", include = "act4e_mcdp" },
]
[tool.poetry.dependencies]
python = "^3.10"
coloredlogs = "^15.0.1"
pydantic = "^2.5.2"
rich = "^13.7.0"
[tool.setuptools]
packages = [
"act4e_mcdp",
]
package-dir = { "" = "src" }
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
act4e-mcdp-solve-dp = 'act4e_mcdp:solve_dp_main'
act4e-mcdp-solve-dp-queries = 'act4e_mcdp:solve_dp_queries_main'
act4e-mcdp-solve-mcdp = 'act4e_mcdp:solve_mcdp_main'
act4e-mcdp-solve-mcdp-queries = 'act4e_mcdp:solve_mcdp_queries_main'
act4e-mcdp-download-tests = 'act4e_mcdp:download_main'
#[tool.poetry_bumpversion.file."src/act4e_mcdp/__init__.py"]
# Duplicate the line above to add more files
[tool.poetry-dynamic-versioning]
enable = true
dirty = false
metadata= false
tagged-metadata= false
vcs = "git"
style = "pep440"
strict = true
# pip install "mkdocstrings[python]" mkdocs-material
[tool.poetry-dynamic-versioning.substitution]
folders = [
{ path = "src" }
]