-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (67 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (67 loc) · 1.46 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
[tool.poetry]
name = "mortgage-api"
version = "0.1.0"
description = "REST API for calculating mortgage parameters"
authors = ["Roman Bakulin"]
license = "MIT License"
readme = "README.md"
packages = [{include = "mortgage_api"}]
[tool.poetry.dependencies]
python = "^3.10"
asgiref = "3.4.0"
certifi = "2023.7.22"
cfgv = "3.3.1"
charset-normalizer = "2.1.1"
coreapi = "2.3.3"
coreschema = "0.0.4"
dill = "0.3.5.1"
distlib = "0.3.6"
django = "3.2.25"
django-cors-headers = "3.13.0"
django-environ = "0.9.0"
djangorestframework = "3.12.4"
djangorestframework-simplejwt = "5.1.0"
drf-yasg = "1.21.3"
filelock = "3.8.0"
flake8 = "5.0.4"
identify = "2.5.5"
idna = "3.3"
inflection = "0.5.1"
isort = "5.10.1"
itypes = "1.2.0"
jinja2 = "3.1.2"
lazy-object-proxy = "1.7.1"
markupsafe = "2.1.1"
mccabe = "0.7.0"
mypy = "0.971"
mypy-extensions = "0.4.3"
nodeenv = "1.7.0"
packaging = "21.3"
platformdirs = "2.5.2"
pre-commit = "2.20.0"
psycopg2 = "2.9.3"
pycodestyle = "2.9.1"
pyflakes = "2.5.0"
pyjwt = "2.4.0"
pyparsing = "3.0.9"
python-dateutil = "2.8.2"
python-json-logger = "2.0.4"
pytz = "2021.1"
pyyaml = "6.0"
requests = "2.31.0"
ruamel-yaml = "0.17.21"
ruamel-yaml-clib = "0.2.6"
six = "1.16.0"
sqlparse = "0.4.4"
toml = "0.10.2"
tomli = "2.0.1"
tomlkit = "0.11.4"
types-python-dateutil = "2.8.19"
typing-extensions = "4.3.0"
uritemplate = "4.1.1"
urllib3 = "1.26.12"
virtualenv = "20.16.5"
wrapt = "1.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"