-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 2.03 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nepalikit"
dynamic = ["version"]
description = "A Nepali language processing library"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Prabhash Kumar Jha", email = "prabhashj07@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Natural Language :: Nepali",
"Topic :: Text Processing :: Linguistic",
"Topic :: Text Processing :: General",
]
dependencies = [
"sentencepiece>=0.2.1,<1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
"pip-audit>=2.7.0",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
]
[project.urls]
Homepage = "https://github.com/prabhashj07/nepalikit"
Repository = "https://github.com/prabhashj07/nepalikit"
"Bug Reports" = "https://github.com/prabhashj07/nepalikit/issues"
[tool.setuptools.packages.find]
include = ["nepalikit*"]
[tool.setuptools.package-data]
nepalikit = [
"tokenization/sentencepiece/model/NepaliKit_sentencepiece.model",
"tokenization/sentencepiece/model/NepaliKit_sentencepiece.vocab",
"data/stopwords.txt",
"data/stemmer_rules.json",
"data/pos_dictionary.json",
"data/pos_ngram_model.json",
"data/ner_dictionary.json",
"data/spelling_dict.txt",
"data/lemma_dictionary.json",
]
[tool.setuptools_scm]
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["UP035"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["test"]