-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 754 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
[tool.poetry]
name = "python-api-development"
version = "0.1.0"
description = "This will be my interpretation of what I'll learn from the 20h course on youtube."
authors = ["I T <ivo.a.v.tavares@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "python_api_development"}]
[tool.poetry.dependencies]
python = "^3.10"
black = "^23.3.0"
pre-commit = "^3.3.2"
fastapi = {extras = ["all"], version = "^0.95.2"}
pytest = "^7.3.1"
psycopg2 = "^2.9.6"
psycopg2-binary = "^2.9.6"
requests = "^2.30.0"
flake8 = "^6.0.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
urllib3 = "1.26.16"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"