-
Notifications
You must be signed in to change notification settings - Fork 85
/
pyproject.toml
88 lines (77 loc) · 2.39 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "spatialmath-python"
version = "1.1.13"
authors = [
{ name="Peter Corke", email="rvc@petercorke.com" },
]
description = "Provides spatial maths capability for Python."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"spatial-math", "spatial math",
"SO2", "SE2", "SO3", "SE3",
"SO(2)", "SE(2)", "SO(3)", "SE(3)",
"twist", "product of exponential", "translation", "orientation",
"angle-axis", "Lie group", "skew symmetric matrix",
"pose", "translation", "rotation matrix",
"rigid body transform", "homogeneous transformation",
"Euler angles", "roll-pitch-yaw angles",
"quaternion", "unit-quaternion",
"robotics", "robot vision", "computer vision",
]
dependencies = [
"numpy>=1.22,<2", # Cannot use 2.0 due to matplotlib version pinning.
"scipy",
"matplotlib==3.5.1", # Large user-base has apt-installed python3-matplotlib (ROS2) which is pinned to this version.
"ansitable",
"typing_extensions",
"pre-commit",
]
[project.urls]
"Homepage" = "https://github.com/bdaiinstitute/spatialmath-python"
"Bug Tracker" = "https://github.com/bdaiinstitute/spatialmath-python/issues"
"Documentation" = "https://bdaiinstitute.github.io/spatialmath-python/"
"Source" = "https://github.com/bdaiinstitute/spatialmath-python"
[project.optional-dependencies]
dev = [
"sympy",
"pytest",
"pytest-timeout",
"pytest-xvfb",
"coverage",
"flake8"
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autorun",
"sphinxcontrib-jsmath",
"sphinx-favicon",
"sphinx-autodoc-typehints",
]
[build-system]
requires = ["setuptools", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"spatialmath",
"spatialmath.base",
]
[tool.black]
line-length = 88
target-version = ['py38']
exclude = "camera_derivatives.py"