-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
34 lines (30 loc) · 829 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
[tool.poetry]
name = "fastapp"
version = "0.0.1"
description = ""
authors = ["Evan Baird <mrcartoonster@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = {extras = ["all"], version = "^0.62.0"}
mimesis = "^4.1.2"
emoji = "^0.6.0"
gunicorn = "^20.0.4"
email-validator = "^1.1.2"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
pytest-picked = "^0.4.4"
ipython = "^7.19.0"
prettyprinter = "^0.18.0"
pre-commit = "^2.9.3"
pendulum = "^2.1.2"
pytest-clarity = "^0.3.0-alpha.0"
pytest-emoji = "^0.2.0"
pytest-randomly = "^3.5.0"
pytest-pythonpath = "^0.7.3"
httpx = "^0.16.1"
[tool.pytest.ini_options]
addopts = "-rssxX -l --tb=short --strict --randomly-seed=last --diff-type=split --emoji -vvv -p no:warnings"
xfail_strict = "True"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"