forked from OpenGradient/BitQuant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 728 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 728 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
[project]
name = "bitquant"
version = "0.1.0"
description = "OpenGradient BitQuant"
requires-python = ">=3.8"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
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