-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.42 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
[project]
name = "MLRun-trial"
version = "0.1.0"
description = "Demo project for using the MLRun project"
authors = [{name = "Brandon Corfman", email = "h9tbgnbbk@privaterelay.appleid.com"}]
dependencies = [
]
license = "MIT"
readme = "README.md"
requires-python = ">= 3.9"
[tool.rye]
managed = true
dev-dependencies = [
"ipython>=8.18.1",
"pytest>=8.2.2",
"pytest-cov>=5.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/mlrun-trial"]
[tool.yapf]
column_limit = 100
indent_dictionary_value = "True"
allow_split_before_dict_value = "False"
[tool.pytest.ini_options]
addopts = "--cov-branch --cov-report term --cov=core"
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning"]
markers=["unit: Unit tests.",
"system: System (browser-based) tests."]
[tool.coverage.run]
source = ["core"]
[tool.pylint]
max-line-length = 100
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"C0415", # (import-outside-toplevel)
"R0401", # (cyclic-import)
"R0902", # (too-many-instance-attributes)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"R0914", # (too-many-locals)
"W0105", # (pointless-string-statement)
]