-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.3 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "splines"
license = "MIT"
dynamic = ["version"]
description = "Splines in Euclidean Space and Beyond"
readme = "README.rst"
keywords = ["splines", "curves", "interpolation", "quaternions"]
authors = [{ name = "Matthias Geier", email = "Matthias.Geier@gmail.com" }]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
dependencies = ["numpy"]
[project.urls]
Documentation = "https://splines.readthedocs.io/"
Repository = "https://github.com/AudioSceneDescriptionFormat/splines/"
Issues = "https://github.com/AudioSceneDescriptionFormat/splines/issues"
[dependency-groups]
dev = [{ include-group = "test" }, { include-group = "doc" }]
test = ["pytest"]
doc = [
"insipid-sphinx-theme",
"nbsphinx",
"ipython!=8.7.0", # see https://github.com/spatialaudio/nbsphinx/issues/687
"ipykernel",
"SymPy>=1.9",
"SciPy",
"matplotlib>=2.1",
"sphinxcontrib-bibtex>=2.1",
"sphinx-last-updated-by-git",
"sphinx-codeautolink",
]
[tool.setuptools.dynamic]
version = { attr = "splines.__version__" }