Skip to content

Commit 4e8af82

Browse files
committed
Setup Cargo and pyproject
1 parent c493c5e commit 4e8af82

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
pyo3 = "0.21.1"
13+
web-audio-api = "1.2.0"

pyproject.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,21 @@ requires = ["maturin>=1.6,<2.0"]
33
build-backend = "maturin"
44

55
[project]
6-
name = "py-web-audio-api"
6+
name = "web-audio-api"
7+
version = "0.1.0"
78
requires-python = ">=3.8"
9+
description = "A Rust/Python implementation of the Web Audio API, for use in non-browser contexts"
10+
license = {text = "MIT License"}
11+
keywords = ["web-audio-api", "audio", "sound", "dsp"]
812
classifiers = [
913
"Programming Language :: Rust",
10-
"Programming Language :: Python :: Implementation :: CPython",
14+
"Topic :: Multimedia :: Sound/Audio",
1115
"Programming Language :: Python :: Implementation :: PyPy",
1216
]
13-
dynamic = ["version"]
17+
18+
[project.urls]
19+
Repository = "https://github.com/orottier/web-audio-api-rs"
20+
Issues = "https://github.com/orottier/web-audio-api-rs/issues"
21+
1422
[tool.maturin]
1523
features = ["pyo3/extension-module"]

0 commit comments

Comments
 (0)