forest_navigating_uav/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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "forest-navigating-uav"
version = "0.1.0"
description = "Forest UAV navigation: simulation, RL, and world generation"
readme = "README.md"
requires-python = ">=3.10"
dependencies = []

[project.optional-dependencies]
env = [
  "fastsim-forest-nav>=0.1.0",
]
rl = [
  "forest-nav-rl>=0.1.0",
]
worldgen = [
  "forest-worldgen>=0.1.0",
]
all = [
  "fastsim-forest-nav>=0.1.0",
  "forest-nav-rl>=0.1.0",
  "forest-worldgen>=0.1.0",
]
dev = [
  "pytest>=8.0",
  "ruff>=0.6",
]

[tool.setuptools]
packages = []

[tool.ruff]
line-length = 100
target-version = "py310"