-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (64 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
75 lines (64 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "relign"
authors = [
{name = "Matthias Burkhardt (HS Kempten)", email="matthias.burkhardt@hs-kempten.de"},
{name = "Tobias Windisch (HS Kempten)", email="tobias.windisch@hs-kempten.de"},
{name = "Tobias Schmähling (HS Kempten)", email="tobias.schmaehling@hs-kempten.de"},
]
maintainers = [
{name = "Matthias Burkhardt (HS Kempten)", email="matthias.burkhardt@hs-kempten.de"},
{name = "Tobias Windisch (HS Kempten)", email="tobias.windisch@hs-kempten.de"},
{name = "Tobias Schmähling (HS Kempten)", email="tobias.schmaehling@hs-kempten.de"},
]
description = "A framework for active alignment using reinforcement learning."
dynamic = ["version"]
requires-python = ">=3.10"
license = "Apache-2.0"
dependencies = [
"torch",
"pandas",
"matplotlib",
"scipy",
"wandb",
"mitsuba>=3.7.0",
"gymnasium",
"scikit-optimize",
"stable_baselines3",
'sb3-contrib',
"typer",
"tensorboard",
"scikit-image>=0.25.2",
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"jupyter>=1.1.1",
"mkdocs>=1.6.1",
"pre-commit>=4.2.0",
"pytest-cov>=6.2.1",
"pytest>=8.3.5",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "Q"]
ignore = ["Q000", "E225", "E226"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "preserve"
[tool.setuptools.packages.find]
include = ["relign*"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.pytest.ini_options]
addopts="--cov relign --cov-report term --verbose"
testpaths = [
"tests",
]
[tool.pyright]
include = ["relign*"]
pythonVersion = "3.13"