-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 832 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openverifiablellm"
version = "0.1.0"
description = "Deterministic dataset hashing utilities for verifiable LLM training"
authors = [
{name = "Varshini"}
]
requires-python = ">=3.9"
dependencies = [
"defusedxml",
"sentencepiece",
"tokenizers==0.15.2"
]
[tool.setuptools.packages.find]
include = ["openverifiablellm*"]
[dependency-groups]
dev = [
"pytest>=7.0",
"ruff>=0.15.4",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:sentencepiece",
"ignore:builtin type Swig:DeprecationWarning",
"ignore:builtin type swigvarlink:DeprecationWarning",
]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]