-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
authors = ["Matilda Peruzzo <[email protected]>", "Grisha Szep <[email protected]>"]
description = "A package for teaching algorithms to play tetris with RL"
license = "MIT"
name = "tetris-school"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
colorama = "^0.4.6"
gymnasium = {extras = ["accept-rom-license", "atari"], version = "^0.29.1"}
ipython = "^8.22"
isort = "^5.13.2"
jax = {extras = ["cuda12"], version = "^0.4.38"}
jaxtyping = "^0.2.36"
joblib = "^1.3.2"
matplotlib = "^3.8"
mypy = "1.11"
numpy = "^1.26"
pygame = "^2.5.2"
python = "^3.11"
torch = "^2.2"
tqdm = "^4.66.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.pylint.messages_control]
max-line-length = 140
[tool.black]
include = '\.pyi?$'
line-length = 140
[tool.isort]
line_length = 140
profile = "black"
[tool.mypy]
allow_redefinition = true
check_untyped_defs = true
explicit_package_bases = true
files = ["."]
follow_imports = "normal"
ignore_missing_imports = true
local_partial_types = true
namespace_packages = true
python_version = "3.11"
show_column_numbers = true
show_error_codes = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = [
"matplotlib.*",
]