forked from satyamsoni2211/vscode_debugging_configurations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 689 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 689 Bytes
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
[tool.poetry]
name = "python_debug"
version = "0.1.0"
description = ""
authors = ["satyam soni <satyamsoni@hotmail.co.uk>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
pydantic = "^1.10.4"
PyMySQL = "^1.0.2"
autopep8 = "^2.0.1"
SQLAlchemy = "^2.0.0"
fastapi = "^0.89.1"
uvicorn = "^0.20.0"
python-multipart = "^0.0.5"
coverage = "^7.2.1"
more-itertools = "^9.1.0"
jmespath = "^1.0.1"
flask = "^2.2.3"
[tool.poetry.dev-dependencies]
mypy = "^1.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
exclude_dirs = [".venv",".vscode",".git",".github",".pytest_cache",".mypy_cache",".coverage",".pytest_cache"]
targets = ["."]