forked from pbchekin/prefect-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
100 lines (78 loc) · 1.69 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "prefect-vault"
version = "0.1.5"
description = "Prefect-Vault"
authors = [
{name = "Pavel Chekin", email = "unknown@mail.web"},
{name = "teocns", email = "teocns@gmail.com"},
]
dependencies = [
"prefect",
"hvac",
"pydantic>=2"
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"setuptools",
"pytest",
"black",
"flake8",
"mypy",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"isort",
"pre-commit",
"pytest-asyncio",
"mock; python_version < \"3.8\"",
"mkdocs-gen-files",
"interrogate",
"coverage",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["prefect_vault"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "prefect_vault/_version.py"
versionfile_build = "prefect_vault/_version.py"
tag_prefix = "v"
parentdir_prefix = ""
[tool.isort]
skip = "__init__.py"
profile = "black"
skip_gitignore = "True"
multi_line_output = 3
[tool.pytest]
asyncio_mode = "auto"
[coverage.run]
omit = ["tests/*", "prefect_vault/_version.py"]
[tool.coverage.report]
fail_under = 80
show_missing = "True"
[tool.flake8]
exclude = ".git,__pycache__,build,dist"
per-file-ignores = [
"setup.py:E501",
]
max-line-length = 88
extend-ignore = [
"E203",
]
# [tool:interrogate]
# ignore-init-module = True
# ignore_init_method = True
# exclude = prefect_vault/_version.py, tests, setup.py, versioneer.py, docs, site
# fail-under = 95
# omit-covered-files = True