-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (59 loc) · 1.11 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
[project]
name = "hea-database-development"
version = "0.1.0"
description = "The HEA Database manages HEA Baseline data."
readme = "README.md"
requires-python = ">=3.12"
[tool.ruff]
line-length = 119
target-version = 'py312'
exclude = [
'.eggs', # exclude a few common directories in the
'.git', # root of the project
'.history',
'.hg',
'.mypy_cache',
'.tox',
'.venv',
'_build',
'migrations',
'node_modules',
'buck-out',
'build',
'builds',
'dist',
]
[lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[lint.flake8-quotes]
docstring-quotes = "double"
[tool.black]
line-length = 119
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.history
| \.hg
| \.mypy_cache
| .ruff_cache
| \.tox
| \.venv
| _build
| node_modules
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
skip = [".history", ".tox"]
src_paths = ["apps"]
[tool.dagster]
module_name = "pipelines"