-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (98 loc) · 2.61 KB
/
pyproject.toml
File metadata and controls
107 lines (98 loc) · 2.61 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[project]
name = "tablassert"
version = "7.3.3"
description = "Extract knowledge assertions from tabular data into NCATS Translator-compliant KGX NDJSON — declaratively, with entity resolution and quality control built in."
authors = [
{ name = "Skye Lane Goetz", email = "sgoetz@isbscience.org" }
]
keywords = [
"knowledge graph",
"bioinformatics",
"entity resolution",
"ner",
"ncats translator",
"kgx",
"yaml configuration",
"table mining",
"declarative pipeline",
"data quality control",
"tablassert",
]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Pydantic",
"Operating System :: OS Independent",
"Environment :: Console",
]
requires-python = ">=3.11"
dependencies = [
"duckdb>=1.5.0",
"fastexcel>=0.19.0",
"lazy-loader>=0.5",
"loguru>=0.7.3",
"onnxruntime>=1.24.4",
"optimum-onnx>=0.1.0",
"orjson>=3.11.7",
"playwright>=1.58.0",
"polars>=1.39.0",
"polars-hash>=0.5.6",
"pyarrow>=23.0.1",
"pydantic>=2.12.5",
"pyexcel>=0.7.4",
"pyyaml>=6.0.3",
"rapidfuzz>=3.14.3",
"scikit-learn>=1.8.0",
"sentence-transformers>=5.3.0",
"sqlite-utils>=3.39",
"typer>=0.21.2",
"xxhash>=3.6.0",
]
[project.urls]
Homepage = "https://github.com/SkyeAv/Tablassert"
Source = "https://github.com/SkyeAv/Tablassert"
Documentation = "https://skyeav.github.io/Tablassert/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["./src/tablassert"]
[project.scripts]
tablassert = "tablassert.cli:CLI"
[project.optional-dependencies]
rtcompat = [
"polars[rtcompat]>=1.39.0",
]
rt = [
"tablassert[rtcompat]",
]
[dependency-groups]
dev = [
"grayskull>=3.1.0",
"mkdocs>=1.6.1",
"pre-commit>=4.5.1",
"pyright>=1.1.408",
"pytest>=9.0.2",
"ruff>=0.15.6",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py311"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = true