-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.1 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "g2p_plus"
authors = [
{ name="Zebulon Goriely", email="zebulon.goriely@cl.cam.ac.uk" },
]
description = "G2P library for multiple language"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
license = { file = "LICENSE"}
keywords = ["G2P", "phonology", "phonetics", "linguistics", "phone"]
dependencies = [
"epitran>=1.25.1",
"phonemizer>=3.2.1",
"pinyin-to-ipa>=0.0.2",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/codebyzeb/g2p-plus"
Issues = "https://github.com/codebyzeb/g2p-plus/issues"
[project.scripts]
g2p_plus = "g2p_plus.main:main"
[tool.setuptools.dynamic]
version = {attr = "g2p_plus.__version__"}
[tool.setuptools.package-data]
g2p_plus = [
"data/*",
"folding/epitran/*",
"folding/phonemizer/*",
"folding/pinyin_to_ipa/*",
"folding/pingyam/*"]