-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
63 lines (53 loc) · 1.27 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
[build-system]
requires = ["hatchling>=1.21", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "thirawat-mapper"
dynamic = ["version"]
description = "Minimal indexing and inference toolkit for terminology mapping."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Natthawut Max Adulyanukosol", email = "max@sidata.plus" }]
dependencies = [
"duckdb>=0.10",
"lance>=0.13",
"lancedb>=0.9",
"numpy>=1.24",
"pandas>=2.0",
"pyarrow>=14.0",
"rich>=13.7",
"sentence-transformers>=2.4",
"torch>=2.2",
"transformers>=4.38",
"protobuf>=4.25",
"tiktoken>=0.7",
"sentencepiece>=0.2.1",
"rerankers>=0.7",
"pylate>=1.3",
"datasets>=4.0",
"tqdm>=4.66",
"openpyxl>=3.1.5",
"pydantic>=2.7",
]
[project.scripts]
thirawat = "thirawat_mapper.cli:main"
[dependency-groups]
dev = ["pytest>=8.0"]
[project.urls]
Repository = "https://sidata.plus/projects/thirawat-mapper-beta"
Issues = "https://sidata.plus/support"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
tag_regex = "^(?:v)?(?P<version>.+)$"
[tool.hatch.build.targets.wheel]
packages = ["src/thirawat_mapper"]
[tool.hatch.build.targets.sdist]
include = [
"README.md",
"pyproject.toml",
"src/",
"tests/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]