-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (68 loc) · 1.99 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
71
72
73
74
75
76
77
[build-system]
requires = ["maturin>=1.9.4,<2.0"]
build-backend = "maturin"
[project]
name = "pocketstation"
version = "0.1.4"
description = "Source-aware live audio capture, processing, and routing for Python"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
]
[project.urls]
Documentation = "https://github.com/pocketstation-io/sdk-python/tree/main/docs"
Issues = "https://github.com/pocketstation-io/sdk-python/issues"
Repository = "https://github.com/pocketstation-io/sdk-python"
"Release notes" = "https://github.com/pocketstation-io/sdk-python/blob/main/RELEASE_NOTES.md"
[project.scripts]
pocketstation-demo = "pocketstation_demo:main"
[project.optional-dependencies]
transcription = [
"faster-whisper>=1.2.1,<2.0",
]
voice-agent-debug = [
"websockets>=17.0,<18",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"mypy>=1.15",
"ruff>=0.11",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["."]
[tool.mypy]
packages = ["pocketstation", "pocketstation_demo"]
mypy_path = "python"
python_version = "3.11"
strict = true
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "RUF", "UP"]
[tool.maturin]
manifest-path = "native/Cargo.toml"
python-source = "python"
python-packages = ["pocketstation", "pocketstation_demo"]
module-name = "pocketstation._native"
exclude = ["**/__pycache__/**", "**/*.pyc", "**/*.pyo"]
include = [
{ path = "RELEASE_NOTES.md", format = "sdist" },
{ path = "docs/**/*.md", format = "sdist" },
{ path = "examples/*.py", format = "sdist" },
{ path = "examples/README.md", format = "sdist" },
]