-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.31 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
45
46
47
[tool.poetry]
name = "rddl-instance-generator"
version = "0.1.0"
description = "A command-line tool for generating RDDL instance files that enables flexible problem complexity by automatically creating multiple, customized problem instances for RDDL domains."
authors = ["GMMDMDIDEMS"]
readme = "README.md"
[tool.poetry.scripts]
rddl-instance-generator = "rddl_instance_generator.main:app"
domain-importer = "rddl_instance_generator.utils.importer:app"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
pyrddlgym = "^2.0"
numpy = "1.26.4"
pyyaml = "^6.0.2"
typer = { extras = ["all"], version = "^0.12.3" }
pydantic = "^2.8.2"
jinja2 = "^3.1.4"
python-constraint2 = "^2.0.0b5"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "--cov --cov-config=.coveragerc --cov-report term"
testpaths = ["tests"]
[tool.mutmut]
paths_to_mutate = ["rddl_instance_generator"]
backup_on_mutation = true
runner = "python -m pytest"
use_coverage = true
tests_dir = "tests/"
cache_only = false
disable_mutation_types = "decorator"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
mutmut = "^2.5.1"
[tool.poetry.group.extras.dependencies]
rddlrepository = { git = "git@github.com:pyrddlgym-project/rddlrepository.git" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"