-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1014 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
[project]
name = "typingkit"
version = "0.2.8"
description = "Python strong typing suite, along with Typed NumPy: Static shape typing and runtime shape validation."
readme = "README.md"
requires-python = ">=3.13"
authors = [{ name = "Ashrith Sagar", email = "ashrith9sagar@gmail.com" }]
dependencies = ["numpy>=2.2"]
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = ["rich>=15.0.0"]
lint = ["ruff>=0.15.12"]
test = ["pytest>=9.0.3", "pytest-memray>=1.8.0"]
typecheck = [
"basedpyright>=1.39.3",
"mypy[mypyc]>=1.20.2",
"pycroscope>=0.3.0",
"pyrefly>=0.63.1",
"pyright>=1.1.409",
"ty>=0.0.33",
"zuban>=0.7.1",
]
[tool.basedpyright]
reportAny = false
reportExplicitAny = false
reportUnusedCallResult = false
reportUnusedParameter = false
[tool.mypy]
enable_incomplete_feature = ["TypeForm"]
plugins = ["typingkit.mypy_plugin"]
[tool.pytest.ini_options]
norecursedirs = ["tests/mypy_plugin"]
[tool.uv]
default-groups = "all"