-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.15 KB
/
pyproject.toml
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
[project.scripts]
transcribe-me = "transcribe_me.main:main"
[project]
name = "transcribe-me"
dynamic = ["version"]
authors = [{ name = "echoHello", email = "[email protected]" }]
description = "A CLI tool to transcribe audio files using OpenAI API"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pydub",
"tqdm",
"pyyaml",
"colorama",
"halo",
"yamale",
"tenacity",
]
[project.urls]
"Homepage" = "https://github.com/echohello-dev/transcribe-me"
"Bug Tracker" = "https://github.com/echohello-dev/transcribe-me/issues"
[tool.setuptools]
packages = [
"transcribe_me",
"transcribe_me.config",
"transcribe_me.audio",
]
[tool.setuptools.package-data]
"transcribe_me.config" = ["*.yaml"]
[tool.setuptools.dynamic]
version = { attr = "transcribe_me.__version__" }
[tool.flake8]
ignore = ["E226", "E302", "E41"]
max-line-length = 160
exclude = ["tests/*"]
max-complexity = 10
[tool.autopep8]
max_line_length = 120
ignore = ["E226", "E302", "E41"]
in-place = true
recursive = true
aggressive = 3