-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "mywallet"
version = "0.1.0"
description = ""
authors = ["Cleiton Lima <cleiton.limapin@gmail.com>"]
[tool.poetry.dependencies]
python = "3.10.3"
Django = "^4.1"
django-debug-toolbar = "^3.5.0"
django-extensions = "^3.2.0"
django-allauth = "^0.51.0"
django-htmx = "^1.13.0"
django-crispy-forms = "^1.14.0"
crispy-bootstrap5 = "^0.6"
whitenoise = "^6.2.0"
psycopg2-binary = "^2.9.3"
dj-database-url = "^1.0.0"
python-decouple = "^3.6"
python-dateutil = "^2.8.2"
pandas-datareader = "^0.10.0"
gunicorn = "^20.1.0"
coral-decimal-mask = "^0.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-django = "^4.5.2"
pytest-factoryboy = "^2.5.0"
black = "^22.6.0"
flake8 = "^5.0.4"
ipython = "^8.4.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
DJANGO_SETTINGS_MODULE = "mywallet.settings_test"
python_files = [
"tests.py",
"test_*.py",
]
[tool.black]
line-length = 80
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
'''
[tool.isort]
profile = "black"
line_length = 80
multi_line_output = 3
include_trailing_comma = true
skip = "migrations"