forked from utiasDSL/gym-pybullet-drones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (27 loc) · 808 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
[tool.poetry]
name = "gym-pybullet-drones"
version = "0.0.3"
description = "PyBullet Gym environments for single and multi-agent reinforcement learning of quadcopter control"
authors = ["Jacopo Panerati <[email protected]>"]
license = "MIT"
readme = "pypi_description.md"
repository = "https://github.com/utiasDSL/gym-pybullet-drones"
packages = [
{ include = "gym_pybullet_drones" }
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22"
Pillow = "^9.0"
matplotlib = "^3.5"
cycler = "^0.10"
gym = "^0.21"
pybullet = "^3.2"
"ray[rllib]" = "1.9"
stable-baselines3 = "^1.5"
scipy = "^1.8"
tensorboard = "^2.9"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core @ git+https://github.com/python-poetry/poetry-core.git@master"]
build-backend = "poetry.core.masonry.api"