-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (48 loc) · 1.23 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
[tool.poetry]
name = "selfsolver"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
Flask = "^1.1.2"
python-dotenv = "^0.14.0"
Flask-SQLAlchemy = "^2.4.4"
psycopg2-binary = "^2.8.6"
passlib = "^1.7.4"
argon2-cffi = "^20.1.0"
Flask-JWT-Extended = "^3.24.1"
marshmallow = "^3.8.0"
gunicorn = "^20.0.4"
Flask-Cors = "^3.0.9"
Faker = "^4.14.0"
dictalchemy = {git = "https://github.com/simontegelid/dictalchemy", rev = "master"}
flask-marshmallow = "^0.14.0"
marshmallow-sqlalchemy = "^0.24.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
black = "^20.8b1"
flake8 = "^3.8.4"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.1"
flake8-bugbear = "^20.1.4"
pre-commit = "^2.7.1"
flake8-docstrings = "^1.5.0"
pep8-naming = "^0.11.1"
flake8-comprehensions = "^3.2.3"
flake8-pytest-style = "^1.3.0"
pytest-cov = "^2.10.1"
pytest-dotenv = "^0.5.2"
flask-shell-ipython = "^0.4.1"
pytest-flask-sqlalchemy = "^1.0.2"
pytest-factoryboy = "^2.0.3"
pytest-flask = "^1.0.0"
pdbpp = "^0.10.2"
pytest-xdist = "^2.1.0"
pytest-only = "^1.2.2"
isort = "^5.6.4"
flake8-isort = "^4.0.0"
pytest-lazy-fixture = "^0.6.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"