chore(deps): mark django as main dependency

This commit is contained in:
Mike 2022-08-12 17:59:17 -07:00
parent a0de1686bc
commit b59f556187
2 changed files with 170 additions and 353 deletions

502
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -56,11 +56,16 @@ classifiers = [
[tool.poetry.dependencies]
python = "^3.7"
django = ">=2.2, <4.1"
django-jsonfield-backport = "^1.0.4"
[tool.poetry.dev-dependencies]
django = "^3.2"
# Docs extra:
sphinx = { version = "^5.0", optional = true }
sphinx-autodoc-typehints = { version = "^1.12", optional = true }
m2r2 = { version = "^0.3", optional = true }
tomlkit = { version = "^0.11", optional = true }
[tool.poetry.dev-dependencies]
mypy = "^0.971"
wemake-python-styleguide = "^0.16"
@ -73,12 +78,16 @@ pytest = "^6.2"
pytest-cov = "^3.0"
pytest-randomly = "^3.12"
sphinx = "^5.1"
sphinx-autodoc-typehints = "^1.19"
doc8 = "^1.0"
m2r2 = "^0.3"
tomlkit = "^0.11"
pytest-pythonpath = "^0.7.4"
pytest-django = "^4.5.2"
black = "^22.6"
hypothesis = "^6.54.2"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-autodoc-typehints",
"m2r2",
"tomlkit",
]