-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.59 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "botok"
dynamic = ["version"]
description = "Tibetan Word Tokenizer"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.8"
authors = [
{name = "OpenPecha development team", email = "openpecha@gmail.com"},
]
keywords = ["nlp", "computational_linguistics", "tibetan", "tokenizer", "token"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Tibetan",
]
dependencies = [
"pyyaml",
"requests",
]
[project.urls]
Homepage = "https://github.com/OpenPecha/botok"
Source = "https://github.com/OpenPecha/botok"
Tracker = "https://github.com/OpenPecha/botok/issues"
[tool.setuptools.dynamic]
version = {attr = "botok.vars.__version__"}
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.setuptools.package-data]
botok = [
"resources/*",
"resources/words_bo/*",
"resources/entry_data/*",
"resources/words_non_inflected/*",
"resources/lemmas/*",
"resources/rules/*",
"resources/words_skrt/*",
"resources/adjustment/*",
]
[tool.coverage.run]
plugins = ["covdefaults"]
omit = [
".env/*",
"botok/third_party/pynpl/cql.py",
"botok/third_party/pynpl/fsa.py",
]
[tool.semantic_release]
version_variable = "botok/vars.py:__version__"