We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 774710c commit 11aedd3Copy full SHA for 11aedd3
README.md
@@ -33,6 +33,8 @@ cd pym3t
33
python -m venv .venv
34
source .venv/bin/activate
35
pip install .
36
+# or if you want to run examples
37
+pip install .[examples]
38
```
39
40
# Example scripts
pyproject.toml
@@ -7,8 +7,13 @@ build-backend = "scikit_build_core.build"
7
[project]
8
name = "pym3t"
9
version = "0.0.1"
10
-requires-python = ">=3.7"
+requires-python = ">=3.8"
11
# run time dependencies
12
-dependencies = [
13
- "numpy"
+dependencies = []
+
14
+[project.optional-dependencies]
15
+examples = [
16
+ "numpy<2.0.0", # older numpy-quaternion releases are not compatible with numpy 2.0.0
17
+ "numpy-quaternion>=2023.0.3",
18
+ "opencv-python>=4.11.0.86",
19
]
0 commit comments