forked from funkybob/django-sniplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 906 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
31
32
33
[tool.poetry]
name = "sniplates"
version = "0.7.0"
description = "Efficient template macro sets for Django"
authors = ["Curtis Maloney <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["django", "templates", "forms"]
documentation = "https://sniplates.readthedocs.io/en/latest/"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = "^3.6"
django = ">=3.0.5"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
isort = "^4.3.21"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"