-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 931 Bytes
/
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
[tool.poetry]
name = "django_conditional_views"
version = "0.1.3"
description = "Simple Etag and Last-Modified mixins for class based views."
authors = ["Andrew Cordery <[email protected]>"]
license = "MIT"
homepage = "https://github.com/cordery/django-conditional-views"
repository = "[email protected]:cordery/django-conditional-views.git"
documentation="https://django-conditional-views.readthedocs.io/en/latest/"
readme = "README.rst"
keywords = ["Django","Last-Modified", "http", "conditional requests", "ETag"]
[tool.poetry.dependencies]
python = "^3.6"
django = "^2.1"
sphinx = { version="^1.7", optional = true }
sphinx-autodoc-typehints = { version="^1.3", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^3.7"
pytest-django = "^3.4"
pytest-pythonpath = "^0.7.3"
pytest-cov = "^2.5"
coverage = "^4.5"
pygments = "^2.2"
tox = "^3.2"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "pygments"]