-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
47 lines (42 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "scikit-kinematics"
version = "0.9.3"
description = "Python utilites for movements in 3d space"
authors = ["Thomas Haslwanter <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"
homepage = "https://work.thaslwanter.at/skinematics/html"
repository = "https://github.com/thomas-haslwanter/scikit-kinematics"
keywords = ["quaterions", "rotations"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
]
packages = [
{include = "skinematics" },
{include = "tests" },
]
# include = [
# { path = "tests/data" },
# ]
[tool.poetry.dependencies]
python = ">=3.9"
docutils = ">= 0.3"
matplotlib = ">= 3.1"
numpy = ">= 1.13.0"
pandas = ">= 1.0"
sympy = ">= 1.0"
scipy = ">= 1.5"
pygame = ">= 2.0"
# PyOpenGL>3.0.0]
[tool.poetry.group.dev.dependencies]
pytest = "^5.2"
black = "^23.3.0"
sphinx = "^7.3.7"
[build-system]
requires = ["poetry-core"]
build-backend = "postry.core.masonry.api"