-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.36 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
[project]
name = "korean-lexicon-spreadsheet-to-tsv"
version = "0.1.0"
description = "Converts Korean lexicon spreadsheet to TSV format"
authors = [
{ name = "UCREL Research Centre", email = "ucrel@lancaster.ac.uk" },
]
license = "Apache-2.0"
license-files = [
"LICENSE",
]
dependencies = [
"openpyxl>=3.1.5",
"pandas>=2.3.3",
"typer>=0.25.1"
]
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"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[dependency-groups]
dev = [
"coverage[toml]>=6.0.0",
"pytest>=6.0,!=7.1.0,!=8.1.0",
"ruff>=0.15.12",
"ty>=0.0.34",
]
[tool.ruff.lint]
extend-select = ["I"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
[tool.coverage.run]
branch = true
source = [
"."
]
command_line = "-m pytest"
[tool.coverage.report]
show_missing = true