-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (78 loc) · 1.45 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
[project]
dependencies = [
"anyio>=4.8.0",
"beautifulsoup4>=4.13.3",
"blobfile>=3.0.0",
"datasets>=3.2.0",
"fastapi[standard]>=0.115.10",
"google-genai>=1.3.0",
"httpx>=0.28.1",
"pandas-stubs>=2.2.3.241126",
"protobuf>=5.29.3",
"pydantic>=2.10.6",
"pytest>=8.3.4",
"python-dotenv>=1.0.1",
"rich>=13.9.4",
"scikit-learn>=1.6.1",
"scipy-stubs>=1.15.1.0",
"sentence-transformers>=3.4.1",
"tiktoken>=0.8.0",
"torch>=2.6.0",
"transformers[torch]>=4.48.3",
]
description = "WWT loves ML"
name = "wwt-stuff"
readme = "README.md"
requires-python = ">=3.13"
version = "0.1.0"
[dependency-groups]
dev = [
"basedpyright>=1.27.0",
"ruff>=0.9.6",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.ruff]
preview = true
target-version = "py313"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
ignore = [
"COM812",
"CPY001",
"D",
"D212",
"D400",
"D404",
"D415",
"D417",
"DOC",
"E203",
"E501",
"ISC001",
"S101",
"S311",
"T201",
"TD003",
]
preview = true # enables pylint rules
select = [
"ALL",
"D212",
"D404",
"D415",
"D417",
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.basedpyright]
typeCheckingMode = "basic"