forked from tud-amr/fabrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 1.15 KB
/
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
[tool.poetry]
name = "fabrics"
version = "0.2.16"
description = "Optimization fabrics in python."
authors = ["Max Spahn <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.6.2,<3.10"
casadi = "3.5.6.pre2"
numpy = "^1.5.1"
geomdl = "^5.3.1"
motion_planning_scenes = {git = "https://[email protected]/maxspahn/motion_planning_scenes.git", rev = "main"}
gym = { version = "^0.21.0", optional = true}
scipy = {version = "^1.5.1", optional = true}
matplotlib = {version = "^3.3.1", optional = true}
forwardkinematics = {git = "https://[email protected]/maxspahn/forwardKinematics.git", rev = "main"}
planarenvs = {git = "https://[email protected]/maxspahn/gym_envs_planar.git", rev = "master", optional = true}
urdfenvs = {git = "https://[email protected]/maxspahn/gym_envs_urdf.git", rev = "master", optional = true}
dataclasses = { version = "^0.8", python = "<3.7" }
pyquaternion = "^0.9.9"
pickle-mixin = "^1.0.2"
[tool.poetry.dev-dependencies]
pylint = "^2.13.4"
pytest = "^6.2.5"
[tool.poetry.extras]
agents = ["gym", "planarenvs", "urdfenvs"]
tutorials = ["scipy", "matplotlib"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"