-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (62 loc) · 1.67 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
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "gymnasium_2048"
version = "0.0.1"
authors = [
{ name = "Quentin Deschamps", email = "quentindeschamps18@gmail.com" },
]
description = "A reinforcement learning environment for the 2048 game based on Gymnasium"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["2048", "Reinforcement Learning", "game", "RL", "AI", "gymnasium", "pygame"]
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"gymnasium==0.29.1",
"pygame==2.5.2",
]
[project.optional-dependencies]
training = [
"matplotlib==3.8.2",
"moviepy==1.0.3",
"pandas==2.2.0",
"pyarrow==15.0.0",
"tqdm==4.66.1",
]
testing = ["pytest"]
quality = ["black[d]", "isort", "pylint"]
[project.urls]
Repository = "https://github.com/Quentin18/gymnasium-2048"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pep8]
max-line-length = "88"
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 88
disable = [
"attribute-defined-outside-init",
"duplicate-code",
"inconsistent-return-statements",
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-member",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-locals",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"