-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 1.02 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
[tool.poetry]
name = "genfond"
version = "0.1.0"
description = ""
authors = ["Till Hofmann <till.hofmann@ml.rwth-aachen.de>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.14"
pddl = "^0.4.4"
dlplan = { git = "https://github.com/morxa/dlplan", rev = 'cfd45615a8f87a4d92b4ba4a61a8dc9d873cf1c9' }
clingo = "*"
pygraphviz = { git = "https://github.com/pygraphviz/pygraphviz", rev = "2fa8af802aeecfe92e53425c2503587de9593d9e"}
tqdm = "*"
setuptools = "*"
filelock = "*"
frozendict = "*"
pyyaml = "*"
mergedeep = "^1.3.4"
[tool.poetry.group.dev.dependencies]
flake8 = "*"
pytest = "*"
ipython = "^9.0.1"
mypy = "^1.15.0"
types-tqdm = "^4.67.0.20250301"
types-pyyaml = "^6.0.12.20241230"
isort = "^6.0.1"
black = "^25.1.0"
[tool.mypy]
[[tool.mypy.overrides]]
module = ["pddl.*", "dlplan.*", "mergedeep.*"]
ignore_missing_imports = true
[tool.isort]
line_length = 119
profile = "black"
[tool.black]
line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"