Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ jobs:
python -c "import sys; assert sys.version.startswith('${{ matrix.python-version }}.')"
- name: Install Python package
run: |
$PIP_INSTALL .
- name: Install test dependencies
run: |
$PIP_INSTALL -r tests/requirements.txt
$PIP_INSTALL --group test .
- name: Run pytest
run: |
python -m pytest
8 changes: 3 additions & 5 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ build:
jobs:
post_checkout:
- git fetch --unshallow || true
python:
install:
- requirements: doc/requirements.txt
- method: pip
path: .
install:
- pip install --upgrade pip
- pip install --group doc .
sphinx:
configuration: doc/conf.py
formats:
Expand Down
6 changes: 0 additions & 6 deletions MANIFEST.in

This file was deleted.

44 changes: 43 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
[build-system]
requires = ["setuptools >= 40.8.0"]
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__" }
42 changes: 0 additions & 42 deletions setup.py

This file was deleted.

1 change: 0 additions & 1 deletion tests/requirements.txt

This file was deleted.

Loading