-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.04 KB
/
pyproject.toml
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
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.0"
tag_format = "$version"
version_files = ["pyproject.toml"]
[tool.ruff.lint]
select = ['F', 'E', 'W', 'B', 'NPY201']
ignore = ['E501', 'E701']
[tool.pyright]
include = ['ml_instrumentation', 'tests']
venvPath = '.'
venv = '.venv'
typeCheckingMode = 'standard'
useLibraryCodeForTypes = true
[project]
name = "ml-instrumentation"
version = "0.0.0"
description = ""
authors = [
{name = "Andy Patterson", email = "[email protected]"},
]
dependencies = [
"numpy>=1.26,<=2.2.2",
"filelock~=3.13",
]
requires-python = ">=3.10,<3.13"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[dependency-groups]
jax = [
"jax>=0.5.0",
]
dev = [
"commitizen>=4.2.1",
"pip>=25.0.1",
"pre-commit>=4.1.0",
"pyright>=1.1.393",
"pytest>=8.3.4",
"pytest-benchmark>=5.1.0",
"pytest-cov>=6.0.0",
"ruff>=0.9.5",
]