-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
92 lines (81 loc) · 1.83 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
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "usas-csv-auto-labeling"
version = "0.1.0"
description = "Tool that annotates data with USAS labels for human verification in CSV format"
authors = [
{ name = "UCREL Research Centre", email = "ucrel@lancaster.ac.uk" },
]
license = "Apache-2.0"
license-files = [
"LICENSE",
]
keywords = [
"usas",
"USAS",
"UCREL",
"ucrel",
"semantics",
"evaluation"
]
classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.10, <3.15"
dependencies = [
"pydantic>=2.0,<3.0",
"pymusas[neural]>=0.4.0",
"spacy>=3.8.11",
"stanza>=1.11.1",
"typer>=0.3.0,<1.0.0",
"xlsxwriter>=3.2.9",
]
[build-system]
requires = ["uv_build>=0.9.9,<0.10.0"]
build-backend = "uv_build"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
stanza = [
"stanza>=1.11.1",
]
igbo = [
"igbo-text>=0.1.3",
]
[dependency-groups]
dev = [
"coverage[toml]>=7.13.1",
"pip>=26.0.1",
"pytest>=9.0.2",
"ruff>=0.14.13",
"ty>=0.0.13",
]
[tool.ruff.lint]
# Enable the isort rules.
extend-select = ["I"]
#[tool.ruff.lint.isort]
#known-third-party = ["src"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"tests"
]
[tool.coverage.run]
branch = true
source = [
"src"
]
command_line = "-m pytest"
[tool.coverage.report]
show_missing = true