-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "bytewaves"
version = "0.2.0"
description = "An acoustic modem for transmitting data using sound waves, with Reed-Solomon error correction."
authors = [
{ name = "Tacio" }
]
readme = "README.md"
requires-python = ">=3.11"
keywords = ["acoustic-modem", "audio", "data-transmission", "mfsk", "reed-solomon"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"numpy>=2.3.3",
"sounddevice>=0.5.2",
]
[project.urls]
Homepage = "https://github.com/tacio/bytewaves"
Repository = "https://github.com/tacio/bytewaves"
Issues = "https://github.com/tacio/bytewaves/issues"
[project.optional-dependencies]
dev = [
"psutil>=5.9",
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.7.0",
"ty",
]
[dependency-groups]
dev = [
"psutil>=5.9",
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.7.0",
"ty",
]
[tool.ruff]
exclude = ["pyproject.toml", "CVS", ".git", ".hg", ".DS_Store"]
# [tool.flake8] moved to ruff
# [tool.black] moved to ruff
# [tool.mypy] moved to ty
[project.scripts]
bytewaves = "bytewaves.modem:main"
[tool.maturin]
manifest-path = "crates/bytewaves-python/Cargo.toml"
module-name = "bytewaves._core"
python-source = "."
features = ["pyo3/extension-module"]