forked from melli-labs/python-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (27 loc) · 815 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
[tool.poetry]
name = "hiring"
version = "1.0.0"
description = "Fix this project and get a job at melli.com!"
authors = ["Melli <melli@melli.com>"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.70.1"
uvicorn = { extras = ["standard"], version = "^0.16.0" }
pydantic = "^1.8.2"
python-multipart = "^0.0.5"
python-jose = { extras = ["cryptography"], version = "^3.3.0" }
passlib = { extras = ["bcrypt"], version = "^1.7.4" }
tomlkit = "^0.7.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-asyncio = "^0.16.0"
pytest-depends = "^1.0.1"
httpx = "^0.23.0"
pylint = "^2.12.2"
black = "^21.12b0"
isort = "^5.10.1"
[tool.pytest.ini_options]
markers = ["bonus: optional task applicants don't have to solve"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"