-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "eager_cache"
version = "0.1.0"
description = "Eager caching made easy"
authors = [
"Lior Pollak"
]
maintainers = [
"Lior Pollak"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.68.0"
uvicorn = "^0.15.0"
pydantic = {version = "^1.8.2", extras = ["dotenv"]}
yarl = "^1.6.3"
ujson = "^5.1.0"
aioredis = {version = "^2.0.0", extras = ["hiredis"]}
aiofiles = "^0.7.0"
httptools = "^0.3.0"
async-exit-stack = "^1.0.1"
async-generator = "^1.10"
deepdiff = "^5.7.0"
msgpack = "^1.0.3"
requests = "^2.27.1"
freezegun = "^1.1.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
mypy = "^0.910"
isort = "^5.9.3"
yesqa = "^1.2.3"
pre-commit = "^2.11.0"
wemake-python-styleguide = "^0.15.3"
black = "==21.7b0"
autoflake = "^1.4"
pytest-cov = "^2.12.1"
pytest-asyncio = "^0.15.1"
nest-asyncio = "^1.5.1"
pytest-env = "^0.6.2"
fakeredis = "^1.6.1"
requests = "^2.26.0"
types-redis = "^4.1.16"
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = ["eager_cache",]
[tool.mypy]
strict = true
ignore_missing_imports = true
allow_subclassing_any = true
allow_untyped_calls = true
pretty = true
show_error_codes = true
implicit_reexport = true
allow_untyped_decorators = true
warn_return_any = false
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"