-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (80 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (80 loc) · 2.03 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "worldalphabets"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"lxml>=4.9.0",
"lxml-stubs>=0.5.0",
"build>=0.10.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.3",
"langcodes>=3.3.0",
"types-requests",
"types-beautifulsoup4",
"pyyaml>=6.0",
"types-pyyaml",
"regex>=2024.0",
"py3-tts-wrapper[google,watson,polly,microsoft,elevenlabs,witai,sherpaonnx,openai,upliftai]",
"PyICU>=2.11",
]
[project.scripts]
wa-build-alphabets = "scripts.build_alphabet_from_cldr:main"
wa-create-index = "scripts.create_index:main"
wa-generate-audio = "scripts.generate_audio:main"
wa-populate-layouts = "scripts.populate_layouts:main"
wa-build-layouts = "tools.build_layouts:main"
wa-validate-layouts = "tools.validate_layouts:main"
wa-scrape-layouts = "tools.scrape_kbdlayout_info:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["worldalphabets*"]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
disallow_untyped_defs = true
strict_optional = true
[[tool.mypy.overrides]]
module = "langcodes"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "lxml"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tts_wrapper"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "google.cloud.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "regex"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[dependency-groups]
dev = [
"mypy>=1.17.1",
"pytest>=8.4.1",
"ruff>=0.12.11",
"types-beautifulsoup4>=4.12.0.20250516",
"types-requests>=2.32.4.20250809",
"pyyaml>=6.0",
"types-pyyaml>=6.0.0.20250101",
"regex>=2024.0",
]