-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 929 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
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "planet"
version = "0.1.0"
description = ""
authors = ["RobertSamoilescu <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.4.0"
pydantic = "^2.8.2"
numpy = "1.26.3"
tqdm = "^4.66.4"
dm-control = "^1.0.22"
opencv-python = "^4.10.0.84"
gym = {extras = ["box2d"], version = "^0.26.2"}
ipykernel = "^6.29.5"
notebook = "^7.2.1"
matplotlib = "^3.9.2"
imageio = "^2.35.0"
pyyaml = "^6.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
exclude = '''
(
\.egg-info
| \.mypy_cache
| \.git
| \.tox
)
'''
[tool.mypy]
ignore_missing_imports = true
plugins = "pydantic.mypy"
exclude = [
'\.egg-info',
'\.mypy_cache',
'\.git',
'\.tox',
]
[tool.poetry.group.dev.dependencies]
flake8 = "7.0.0"
flake8-black = "0.3.6"
mypy = "1.10.0"
mypy-protobuf = "3.1.0"
black = "24.4.0"