-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (52 loc) · 1.24 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ["py38", "py39"]
[tool.isort]
ensure_newline_before_comments = true
line_length = 79
multi_line_output = 3
include_trailing_comma = true
skip_glob = ["docs/*", "migrations/*", "*.egg-info"]
[tool.poetry]
name = "poc-django-stripe"
version = "0.1.0"
description = ""
authors = ["Ivan Ogasawara <ivan.ogasawara@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
crispy-bootstrap5 = "^0.6"
dj-stripe = "^2.6"
Django = "^4.*"
djangorestframework = "^3.13.1"
django-cors-headers = "^3.11.0"
django-environ = "^0.9.0"
django-crispy-forms = "^1.14.0"
django-allauth = "^0.51.0"
drf-spectacular = "^0.22.1"
psycopg2-binary = "^2.8.6"
pytz = "^2021.1"
PyYAML = "^5.4.1"
redis = "^4"
regex = "^2021.4.4"
requests = "^2.25.1"
requests-oauthlib = "^1.3.0"
toml = "^0.10.2"
stripe = "^2.65"
[tool.poetry.dev-dependencies]
coverage = "^6.3.1"
django-extensions = "^3.1.3"
django-debug-toolbar = "^3.2.1"
flake8 = ">=3.9.1"
pytest = ">=6.2.3"
pytest-django = ">=4.2.0"
pytest-sugar = ">=0.9.4"
typing-extensions = "^4"
Werkzeug = "^2"
pytest-cov = "^3.0.0"
factory-boy = "^3"
django-upgrade = "^1.5.0"
whitenoise = "^6.2.0"