-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.01 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
[tool.poetry]
name = "user-service"
version = "0.1.0"
description = "Basic proyect with python3, FastAPI and Poetry"
authors = ["Agustin Rojas <rojasagustin90@gmail.com>"]
packages = [
{ include = "app" },
{ include = "app/**/*.py" },
]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.66.0"
uvicorn = "^0.14.0"
pydantic = {extras = ["email"], version = "^1.8.1"}
pytest = "^6.2.3"
pytest-cov = "^2.11.1"
requests = "^2.25.1"
peewee = "^3.14.4"
python-multipart = "^0.0.5"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-jose = {extras = ["cryptography"], version = "^3.2.0"}
python-dotenv = "^0.17.0"
SQLAlchemy = "^1.3.23"
uuid = "^1.30"
alembic = "^1.6.5"
psycopg2 = "^2.9.1"
psycopg2-binary = "^2.9.1"
[tool.poetry.extras]
testing = ["pytest", "pytest-cov"]
[tool.poetry.dev-dependencies]
pre-commit = "^2.11.1"
flake8 = "^3.9.0"
black = "^20.8b1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
skip-string-normalization = true