-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (31 loc) · 895 Bytes
/
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
[project]
name = "procgen-companion"
version = "0.1.0"
description = "An AnimalAI companion tool for procedural generation of task variations."
authors = [{ name = "Wout Schellaert", email = "[email protected]" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["PyYAML>=6.0.0", "tqdm>=4.66.4"]
[project.scripts]
procgen = 'procgen_companion.cli.run:run'
# [tool.poetry.group.dev.dependencies]
# pytest = "^8.2.1"
# types-PyYAML = "^6.0.12.10"
# mypy = "^1.10.0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.10.0",
"types-PyYAML>=6.0.12.20240311",
"pytest>=8.2.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.ruff.lint]
ignore = [
"F541", # We don't mind empty f-strings.
]