-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
35 lines (32 loc) · 978 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bsk_rl"
version = "1.0.1"
authors = [
{ name = "Adam Herrmann", email = "[email protected]" },
{ name = "Mark Stephenson", email = "[email protected]" },
]
description = "RL environments and tools for spacecraft autonomy research, built on Basilisk. Developed by the AVS Lab."
readme = "README.md"
requires-python = ">=3.10.0"
license = { text = "MIT" }
dependencies = [
"Deprecated",
"gymnasium",
"numpy",
"pandas",
"pettingzoo",
"pytest==7.3.1",
"pytest-cov",
"pytest-repeat",
"requests",
"ruff>=0.1.9",
"scipy",
]
[project.optional-dependencies]
docs = ["ipykernel", "ipywidgets", "nbdime", "nbsphinx", "sphinx-rtd-theme"]
rllib = ["dm_tree", "pyarrow", "ray[rllib]==2.35.0", "scikit-image", "torch", "typer"]
[project.scripts]
finish_install = "bsk_rl.finish_install:pck_install"