-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (49 loc) · 1.26 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
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[tool.poetry]
name = "hive-claim-manager-api"
version = "0.1.0"
description = ""
authors = ["Meni Yakove <myakove@gmail.com>"]
readme = "README.md"
packages = [{ include = "api" }]
[tool.poetry.scripts]
hive-claim-manager-api = "api.api:main"
[tool.poetry.dependencies]
python = "^3.12"
flask = "^3.0.3"
flask-sqlalchemy = "^3.1.1"
pyaml-env = "^1.2.1"
shortuuid = "^1.0.13"
openshift-python-utilities = "^5.0.41"
flask-bcrypt = "^1.0.1"
flask-session = "^0.8.0"
redis = "^5.0.4"
flask-cors = "^4.0.1"
gunicorn = "^22.0.0"
uwsgi = "^2.0.25.1"
openshift-python-wrapper = "^10.0.49"
[tool.poetry.group.dev.dependencies]
ipython = "^8.24.0"
ipdb = "^0.13.13"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"