-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (54 loc) · 1.73 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dphon"
readme = "README.md"
description = "Tools and algorithms for phonology-aware Early Chinese NLP."
dynamic = ["version"]
license = { file = "LICENSE" }
keywords = ["old chinese", "early chinese", "phonology", "linguistics", "nlp"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Traditional)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
]
dependencies = [
"docopt",
"spacy>=3",
"Levenshtein",
"lingpy",
"rich",
"jsonlines",
]
authors = [
{ name = "Nick Budak", email = "[email protected]" },
{ name = "Gian Duri Rominger", email = "[email protected]" },
]
requires-python = ">=3.8"
[project.urls]
Repository = "https://github.com/direct-phonology/dphon"
Issues = "https://github.com/direct-phonology/dphon/issues"
Documentation = "https://direct-phonology.github.io/dphon/"
[project.optional-dependencies]
dev = ["check-manifest", "mypy", "pylint"]
test = ["coverage"]
[project.entry-points.console_scripts]
dphon = "dphon.cli:run"
[project.entry-points.spacy_factories]
ngrams = "dphon.ngrams:create_ngrams"
g2p = "dphon.g2p:create_graphemes_to_phonemes"
ngram_phonemes_index = "dphon.index:create_ngram_phonemes_lookup_index"
[tool.setuptools]
packages = ["dphon"]
[tool.setuptools.dynamic]
version = { attr = "dphon.__version__" }