-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 930 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
39
40
41
42
43
44
45
[project]
name = "rlbook"
version = "0.1.0"
description = "Code for my walkthrough of: Reinforcement Learning An Introduction by Richard Sutton and Andrew Barto"
authors = [
{ name = "joseph-jnl", email = "[email protected]" }
]
dependencies = [
"numpy>=1.26.4",
"jaxtyping>=0.2.29",
]
readme = "README.md"
requires-python = ">= 3.11"
[project.optional-dependencies]
cpu = [
"jax",
]
gpu = [
"jax[cuda12]",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/rlbook"]
[dependency-groups]
dev = [
"pytest>=8.2.2",
"hydra-core>=1.3.2",
"plotnine>=0.13.6",
"wandb>=0.18.5",
"austin-dist>=3.7.0",
"jupyterlab>=4.2.5",
"ruff>=0.8.0",
"mkdocs-material>=9.5.50",
"mkdocstrings-python>=1.13.0",
"mkdocs-glightbox>=0.4.0",
]