-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.93 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "intercept"
version = "0.1.0"
description = "A research-grade, reproducible benchmark and simulation platform comparing classical, optimal, game-theoretic, and learned missile-interception guidance."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Manas Reddy Arumalla", email = "manasreddyarumalla@gmail.com" }]
keywords = [
"missile-guidance", "proportional-navigation", "pursuit-evasion",
"reinforcement-learning", "model-predictive-control", "differential-games",
"control-systems", "robotics", "simulation", "benchmark",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
"pyyaml>=6.0",
]
[project.optional-dependencies]
estimation = ["filterpy>=1.4.5"]
mpc = ["casadi>=3.6"]
rl = ["gymnasium>=0.29", "stable-baselines3>=2.2", "sb3-contrib>=2.2", "torch>=2.1"]
marl = ["pettingzoo>=1.24"]
viz = ["pyvista>=0.43", "plotly>=5.18"]
track = ["wandb>=0.16", "pyarrow>=14.0"]
docs = ["mkdocs-material>=9.5", "mkdocs-material[imaging]"]
dev = ["pytest>=7.4", "pytest-cov>=4.1", "ruff>=0.3", "mypy>=1.8"]
[project.urls]
Homepage = "https://github.com/Manas-arumalla/intercept"
Documentation = "https://Manas-arumalla.github.io/intercept"
Repository = "https://github.com/Manas-arumalla/intercept"
[tool.setuptools.packages.find]
include = ["intercept*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B", "NPY"]
[tool.mypy]
python_version = "3.10"
warn_unused_ignores = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"