-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.07 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
[tool.poetry]
name = "kaatio_plan_validator"
version = "0.1.0"
description = "KAATIO Plan Validator"
authors = ["Your Name <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10.6"
email-validator = "^2.2.0"
fastapi = {extras = ["all"], version = "^0.115.7"}
gunicorn = "^23.0.0"
lxml = "^5.3.0"
python-multipart = "^0.0.20"
uvicorn = {extras = ["standard"], version = "^0.34.0"}
xmlschema = "^3.4.3"
GDAL = "3.2.2.1"
[tool.poetry.dev-dependencies]
aws-cdk-lib = "^2.177.0"
black = "^24.10.0"
constructs = ">=10.0.0, <11.0.0"
exceptiongroup = "^1.2.2"
flake8 = "^7.1.1"
flake8-black = "^0.3.6"
flake8-bugbear = "^24.12.12"
flake8-comprehensions = "^3.16.0"
flake8-docstrings = "^1.7.0"
flake8-eradicate = "^1.5.0"
flake8-fixme = "^1.1.1"
flake8-isort = "^6.1.1"
flake8-print = "^5.0.0"
flake8-return = "^1.2.0"
flake8-simplify = "^0.21.0"
flake8-use-pathlib = "^0.3.0"
isort = "^5.13.2"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
requests = "^2.32.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119