forked from primaprashant/hns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 947 Bytes
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
[project]
name = "hns"
version = "1.0.1"
description = "A simple, privacy-focused speech-to-text CLI tool"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"click>=8.2.1",
"faster-whisper>=1.1.1",
"numpy>=2.2.6",
"pyperclip>=1.9.0",
"rich>=13.0.0",
"sounddevice>=0.5.2",
]
[project.urls]
Homepage = "https://github.com/primaprashant/hns"
Issues = "https://github.com/primaprashant/hns/issues"
[project.scripts]
hns = "hns.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"Makefile",
"uv.lock",
]
[dependency-groups]
dev = [
"ruff>=0.12.1",
]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "W", "TID", "PTH", "Q"]