-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 865 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
[project]
name = "bitquant"
version = "0.1.0"
description = "OpenGradient BitQuant"
requires-python = ">=3.9"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"asyncio: marks tests as async (deselect with '-m \"not asyncio\"')",
]
[tool.mypy]
python_version = "3.9"
disallow_untyped_defs = false
disallow_incomplete_defs = true
check_untyped_defs = false
disallow_untyped_decorators = false
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
strict_optional = true
exclude = [
'venv/', # Exclude venv directory
'.venv/', # Common alternative venv directory name
]
[[tool.mypy.overrides]]
module = [
"opengradient",
"opengradient.mltools",
"opengradient.llm"
]
ignore_missing_imports = true