forked from Kyubyong/g2pK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (57 loc) · 1.47 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
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "g2pkiwi"
description = "a fork of g2pK, using kiwipiepy; g2p module for Korean"
authors = [
{name = "dowon", email = "ks2515@naver.com"},
]
dependencies = [
"jamo",
"nltk",
"kiwipiepy>=0.14.0",
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["g2p", "korean", "g2pK", "kiwipiepy"]
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: Korean",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/Bing-su/g2pkiwi"
[project.scripts]
g2pkiwi = "g2pkiwi.__main__:cli"
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
[tool.pdm.version]
source = "file"
path = "g2pkiwi/__version__.py"
[tool.pdm.build]
source-includes = ["tests/"]
[tool.pdm.scripts]
format = "pre-commit run -a"
test = "python tests/test.py"
[tool.pdm.dev-dependencies]
dev = [
"black>=22.10.0",
"isort>=5.10.1",
"ruff",
"pre-commit>=2.20.0",
"ipykernel>=6.16.1",
]
[tool.isort]
profile = "black"