-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 945 Bytes
/
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
[tool.poetry]
name = "ubicor_api"
version = "0.1.0"
description = ""
authors = ["Cristian Alvarez H <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.78.0"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
SQLAlchemy = "^1.4.36"
pydantic = {extras = ["email"], version = "^1.9.0"}
passlib = "^1.7.4"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.5"
alembic = "^1.7.7"
Pillow = "^9.1.0"
click = "^8.1.3"
google-auth = "^2.9.1"
requests = "^2.28.1"
psycopg2-binary = "^2.9.3"
bcrypt = "^4.0.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = "^22.6.0"
pre-commit = "^2.20.0"
isort = "^5.10.1"
[tool.black]
line-length = 80
extend-exclude = '''
(
alembic/*
)
'''
force-exclude = '''
(
alembic # files here are ignored by pre-commit
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"