-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (58 loc) · 1.64 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
67
[project]
name = "VLNGramCounter"
description = "NGram counter for large corpuses"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
authors = [
{name = "Mark Newman", email = "[email protected]" }
]
maintainers = [
{name = "Mark Newman", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic"
]
requires-python = ">=3.11"
dependencies = [
"progressbar2>=3.51.4,<4.0.0"
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/TextCorpusLabs/VLNGramCounter"
"Bug Reports" = "https://github.com/TextCorpusLabs/VLNGramCounter/issues"
"Source" = "https://github.com/TextCorpusLabs/VLNGramCounter"
[project.scripts]
VLNGramCounter = "VLNGramCounter.__main__:main"
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "VLNGramCounter.__init__.__version__"}
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
python_files = [
"*.py"
]
[tool.pyright]
include = ["src"]
pythonVersion = "3.11"
strictListInference = true
strictDictionaryInference = true
strictParameterNoneValue = true
reportMissingImports = "error"
reportMissingTypeStubs = "error"
reportUnknownMemberType = "error"