-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
82 lines (75 loc) · 1.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = ""
version = ""
description = ""
authors = [
{name = "csralvall", email = "[email protected]"},
]
dependencies = [
"pulp>=2.7.0",
"sortedcontainers>=2.4.0",
"pandas>=2.0.3",
"structlog>=23.1.0",
"click>=8.1.4",
"sshtunnel>=0.4.0",
"numpy>=1.25.1",
"psutil>=5.9.5",
]
requires-python = ">=3.10"
license = {text = "MIT"}
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.3.3",
]
[tool.pyright]
reportGeneralTypeIssues = "error"
[tool.black]
line_length = 79
target_version = ['py310']
exclude = '''
/(
\.toml
|\.git
|Dockerfile
|Jenkinfile
)/
'''
[tool.isort]
line_length = 79
wrap_length = 79
py_version = 310
profile = 'black'
skip = ['.gitignore', '.dockerignore']
multi_line_output = 3
skip_gitignore = true
case_sensitive = true
group_by_package = true
include_trailing_comma = true
combine_star = true
atomic = true
use_parentheses = true
[tool.ruff]
select = [
"E",
"W",
"DJ",
"F",
"B",
"UP",
"C4",
"DTZ",
"T10",
"T20",
"G",
"SIM",
"PLR",
"PLW",
"RUF",
]
line-length = 119
ignore = ["DJ001"]
[tool.ruff.mccabe]
max-complexity = 10
[tool.coverage.report]
skip_empty = true
skip_covered = true