-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.06 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
[tool.poetry]
name = "options"
version = "0.1.0"
description = ""
authors = ["TristanBester <tristanbester@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
black = "^23.12.0"
numpy = "^1.26.2"
tqdm = "^4.66.1"
matplotlib = "^3.8.2"
gymnasium = "^0.29.1"
termcolor = "^2.4.0"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.pylint.MASTER]
disable=["C0114", "R0903", "C0103", "R0914", "W0613", "w0221"]
[tool.pyright]
include = ["src"]
exclude = [
"**/__pycache__",
]
typeCheckingMode = "strict"
reportMissingTypeStubs = false
reportUnknownVariableType = false
reportUnknownMemberType=false
reportUnknownArgumentType=false
reportUnknownParameterType=false
reportGeneralTypeIssues=false
reportIncompatibleMethodOverride=false
pythonVersion = "3.11"
pythonPlatform = "Linux"
[tool.isort]
profile = "black"
py_version=311
line_length=88
[tool.poetry.group.dev.dependencies]
isort = "^5.13.1"
pylint = "^3.0.3"
pylance = "^0.8.20"
pyright = "^1.1.340"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"