-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 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
78
[project]
name = "call2notes"
version = "1.1.1"
description = "Record calls, diarize speakers with NVIDIA NeMo, transcribe with NVIDIA Parakeet, and summarize with any OpenAI-compatible LLM."
requires-python = ">=3.13"
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [{name = "dmmop"}]
keywords = ["pipewire", "nemo", "diarization", "transcription", "meeting-notes"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Utilities",
]
dependencies = [
'nemo_toolkit[asr]',
"numba>=0.60.0",
"numpy",
"soundfile",
"soundcard",
"torch",
"typer",
"rich",
"loguru",
"scipy",
"httpx",
"pydantic>=2.13.3",
"tomlkit>=0.14.0",
"tiktoken>=0.12.0",
"tenacity",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/dmmop/call2notes"
Repository = "https://github.com/dmmop/call2notes.git"
Issues = "https://github.com/dmmop/call2notes/issues"
[project.scripts]
call2notes = "Call2Notes.main:app"
c2n = "Call2Notes.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.uv.workspace]
members = ["packages/call2notes-gui"]
[tool.hatch.build.targets.wheel]
packages = ["src/Call2Notes"]
[tool.semantic_release]
assets = []
build_command = "uv build"
changelog_file = "CHANGELOG.md"
commit_message = "chore(release): v{version}"
commit_parser = "conventional"
major_on_zero = false
tag_format = "v{version}"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.commit_parser_options]
ignore_merge_commits = true
parse_squash_commits = true
patch_tags = ["fix", "perf"]
minor_tags = ["feat"]