-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 762 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 762 Bytes
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 = "forwardkinematics"
version = "1.2.3"
description = "\"Light-weight implementation of forward kinematics using casadi.\""
authors = ["Max Spahn <m.spahn@tudelft.nl>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/maxspahn/forwardKinematics.git"
repository = "https://github.com/maxspahn/forwardKinematics.git"
[tool.poetry.dependencies]
python = "^3.8,<4.0"
casadi = "^3.5.4,!=3.5.5.post1,!=3.5.5.post2"
numpy = "^1.15.3"
urdf_parser_py = ">=0.0.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
jedi = "^0.18.1"
pytest = "^6.2.5"
pytest-coverage = "^0.0"
black = "^22.3.0"
pylint = "^2.13.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"