-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.29 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
[tool.poetry]
package-mode = false
name = "blaise_export_reporting_tool"
version = "0.1.0"
description = ""
authors = ["Blaise Team"]
[tool.poetry.dependencies]
python = "^3.13"
Flask = "^3.1.3"
google-cloud-datastore = "^2.24.0"
mysql-connector-python = "^9.5.0"
requests = "^2.33.1"
functions-framework = "^3.10.1"
numpy = "^2.3.5"
pandas = "^2.3.3"
google-cloud-storage = "^3.10.1"
python-dotenv = "^1.2.2"
google-cloud-tasks = "^2.22.0"
pyasn1 = "^0.6.3"
protobuf = "^6.33.5"
urllib3 = "^2.6.3"
werkzeug = "^3.1.5"
requests-mock = "^1.12.1"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
coverage = "^7.13.0"
black = "^26.3.1"
pytest-cov = "^7.0.0"
pytest-flask = "^1.3.0"
pytest-mock = "^3.15.1"
pytest-lazy-fixtures = "^1.4.0"
isort = "^7.0.0"
flake8 = "^7.3.0"
mypy = "^1.19.0"
types-requests = "^2.33.0.20260408"
types-python-dateutil = "^2.9.0.20251115"
behave = "^1.3.3"
deptry = "^0.24.0"
vulture = "^2.14"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = "3"
include_trailing_comma = "True"
line_length = "88"
profile = "black"
[tool.mypy]
python_version = "3.13"
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
ignore_missing_imports = true