-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "drones-sim"
version = "0.1.0"
description = "Quadcopter dynamics simulation with cascaded PID control and EKF sensor fusion"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
"viser>=0.2",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "ruff"]
rl = ["torch>=2.2", "stable-baselines3>=2.3", "gymnasium>=0.29", "tensorboard>=2.15", "pyyaml>=6.0"]
rl-dev = ["drones-sim[rl]", "wandb", "optuna>=3.5", "moviepy"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"
src = ["src", "tests", "examples"]
extend-exclude = [".venv"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"] # long lines — not worth a mass reformat
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.setuptools.package-data]
"drones_sim.models" = ["*.urdf"]