-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 955 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 955 Bytes
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
[project]
name = "toplocvalidator"
dynamic = ["version"]
description = "TopLoc Validator"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{ name = "Jackmin801", email = "ongjackm@gmail.com" }
]
dependencies = [
"fastapi[standard]",
"uvicorn[standard]",
"toploc>=0.1.6",
"torch",
"transformers",
"vllm",
"pyarrow",
"shardcast>=0.1.8",
"setuptools",
"datasets",
]
[project.optional-dependencies]
gcp = [
"google-cloud-storage",
]
[tool.uv]
dev-dependencies = [
"ruff",
"pre-commit",
"pytest",
"pytest-asyncio",
]
[project.scripts]
toplocvalidator = "toplocvalidator.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "toplocvalidator/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["toplocvalidator"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"