You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
773 B
TOML

# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-crud-mixins"
version = "1.0.1"
description = "CRUD mixins for Django class-based views"
readme = "README.md"
authors = [{ name = "Mark Veidemanis", email = "m@zm.is" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
]
keywords = ["django", "mixins", "helpers", "crud"]
dependencies = [
"django",
"django-rest-framework",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://git.zm.is/XF/django-crud-mixins"