Skip to content

Commit 2997478

Browse files
committed
Add pyproject.toml
1 parent 6b99b63 commit 2997478

File tree

4 files changed

+29
-51
lines changed

4 files changed

+29
-51
lines changed

MANIFEST.in

Lines changed: 0 additions & 8 deletions
This file was deleted.

pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[build-system]
2+
requires = ["setuptools", "setuptools-scm"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "sfs"
7+
license = "MIT"
8+
dynamic = ["version"]
9+
description = "Sound Field Synthesis Toolbox"
10+
readme = "README.rst"
11+
keywords = ["audio", "SFS", "WFS", "Ambisonics"]
12+
authors = [{ name = "SFS Toolbox Developers", email = "[email protected]" }]
13+
dependencies = ["numpy", "scipy"]
14+
requires-python = ">= 3.6"
15+
classifiers = [
16+
"Operating System :: OS Independent",
17+
"Topic :: Scientific/Engineering",
18+
]
19+
20+
[project.urls]
21+
Documentation = "https://sfs-python.readthedocs.io/"
22+
Repository = "https://github.com/sfstoolbox/sfs-python"
23+
Issues = "https://github.com/sfstoolbox/sfs-python/issues"
24+
25+
[tool.setuptools.packages.find]
26+
include = ["sfs*"]
27+
28+
[tool.setuptools.dynamic]
29+
version = { attr = "sfs.__version__" }

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)