-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (46 loc) · 1.21 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
[project]
name = "parsetc"
dynamic = ["version"]
description = "Parse and convert between different Teochew phonetic spelling schemes."
authors = [
{ name="Brandon Seah" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
dependencies = [
"lark == 1.1.*",
"importlib-resources",
]
keywords = ["Chinese", "Teochew", "romanization"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Traditional)",
"Topic :: Text Processing :: Linguistic"
]
[project.urls]
source = "https://github.com/learn-teochew/parsetc"
homepage = "https://learn-teochew.github.io"
[project.scripts]
parsetc = "parsetc.parsetc:main"
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "parsetc.__version__"}
[tool.setuptools.package-data]
parsetc = [
"Teochew/shared.lark",
"Teochew/terminals.json",
"Teochew/extends.json",
"Teochew/mergers.json",
"Cantonese/shared.lark",
"Cantonese/terminals.json",
"Cantonese/extends.json",
"Cantonese/mergers.json",
]