-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 969 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
[project]
name = "PgxClassicEnvs"
version = "0.1.0"
description = "Vectorized ConnectFour and TicTacToe examples using JAX"
authors = [{name = "Brandon Corfman", email = "[email protected]"}]
dependencies = [
"jaxlib>=0.4.28",
"pgx>=2.0.1",
"mctx>=0.0.5",
"nicegui>=1.4.27",
]
license = "MIT"
readme = "README.md"
requires-python = ">= 3.9"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.2.2",
"pytest-cov>=5.0.0",
"ipython>=8.18.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/pgx-classicenvs"]
[tool.pytest.ini_options]
addopts = "--cov-branch --cov-report term --cov=src"
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning"]
markers=["unit: Unit tests.",
"system: System (browser-based) tests."]
[tool.coverage.run]
source = ["src"]