mirror of
https://github.com/wrabit/django-cotton.git
synced 2025-07-07 17:45:01 +00:00
25 lines
905 B
TOML
25 lines
905 B
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "django-cotton"
|
|
version = "2.1.3"
|
|
description = "Bringing component based design to Django templates."
|
|
authors = [ "Will Abbott <willabb83@gmail.com>",]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
classifiers = [ "Development Status :: 5 - Production/Stable", "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.3"
|