-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
25 lines (21 loc) · 893 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
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-cotton"
version = "1.5.2"
description = "Bringing component based design to Django templates."
authors = [ "Will Abbott <[email protected]>",]
license = "MIT"
readme = "README.md"
classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.10", "Framework :: Django",]
keywords = [ "django", "components", "ui",]
exclude = [ "dev", "docs", "django_cotton/tests", "django_cotton/templates",]
[tool.black]
line-length = 100
exclude = "/(\n \\.git\n | \\.mypy_cache\n | \\\\.tox\n | \\\\.venv\n | _build\n | buck-out\n | build\n | dist\n | venv\n)/\n"
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = ">=3.8,<4"
django = ">=4.2,<5.2"