-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (64 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
80 lines (64 loc) · 1.56 KB
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
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "articulated"
version = "0.1.0"
description = "Learning Neural Manifold Representations for Articulated Robotics"
authors = [
"Mathilde Papillon <mpapillon@ucsb.edu>",
"Francisco Acosta <facosta@ucsb.edu>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
# Core ML
torch = ">=2.0.0"
lightning = ">=2.0.0"
# Data & numerics
numpy = ">=1.24.0"
scipy = ">=1.11.0"
h5py = ">=3.9.0"
pyyaml = ">=6.0"
# Visualization
matplotlib = ">=3.7.0"
plotly = ">=5.15.0"
# Dimensionality reduction & analysis
scikit-learn = ">=1.3.0"
umap-learn = ">=0.5.0"
# Reinforcement learning (Stage 3)
gymnasium = {version = ">=0.29.0", extras = ["mujoco"]}
stable-baselines3 = ">=2.0.0"
# Experiment tracking
wandb = ">=0.15.0"
# Notebooks
jupyterlab = ">=4.0.0"
ipywidgets = ">=8.0.0"
tensorboard = "^2.20.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0.0"
ruff = ">=0.4.0"
mypy = ">=1.10.0"
black = ">=24.0.0"
types-PyYAML = ">=6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "B", "I"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = false
warn_unused_configs = true
ignore_missing_imports = true
check_untyped_defs = false
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = ["articulated.analysis.visualization", "articulated.rl.environment"]
ignore_errors = true
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]