-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpyproject.toml
41 lines (33 loc) · 1.03 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
[build-system]
requires = ["setuptools>=42", "wheel", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
name = "ctc-forced-aligner"
description = "Text to speech alignment using CTC forced alignment"
license = { text = "CC-BY-NC 4.0" }
authors = [
{name = "Mahmoud Ashraf", email = "[email protected]"},]
dynamic = ["version", "dependencies"]
requires-python = ">= 3.9"
[tool.setuptools.dynamic]
version = {attr = "ctc_forced_aligner.__version__"}
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
dev = ["black==23.*", "flake8==7.*", "flake8-pyproject==1.*", "isort==5.*", "pytest==7.*"]
[project.urls]
repository = "https://github.com/MahmoudAshraf97/ctc-forced-aligner"
[project.scripts]
ctc-forced-aligner = "ctc_forced_aligner.align:cli"
[tool.setuptools.package-data]
"*" = [
"punctuations.lst",
"uroman/bin/**/*.*",
"uroman/data/**/*.*",
"uroman/lib/**/*.*",
]
[tool.flake8]
max-line-length = 100
ignore = ["E203", "W503"]
[tool.isort]
profile = "black"
lines_between_types = 1