-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.14 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
[project]
name = "BFA"
version = "0.1.0"
description = "CLI tool for RNN-T based text/audio forced alignment."
authors = [{name="Picus303", email="pilleurc@protonmail.com"}]
readme = "README.md"
license = "MIT"
[project.urls]
Homepage = "https://pypi.org/project/BFA/"
requires-python = ">=3.12"
dependencies = [
"torch>=2.6",
"torchaudio>=2.6",
"cyclopts>=3.14",
"misaki==0.9",
"matplotlib>=3.8",
"tqdm>=4.66",
"pyyaml>=6.0"
]
[project.scripts]
bfa = "BFA.main:app"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["BFA", "BFA.*"]
exclude = ["out*", "temp*"]
[tool.setuptools.package-data]
"BFA" = [
"config.yaml",
"logs/placeholder.txt",
"forced_aligner/inference_engine/weights/bfa_model_encoder_100.pt",
"forced_aligner/inference_engine/weights/bfa_model_decoder_100.pt",
"forced_aligner/inference_engine/weights/bfa_model_joint_network_100.pt",
"forced_aligner/text_preprocessor/tokenizer/tokenizer.json",
"forced_aligner/text_preprocessor/ipa_mapping.json"
]