add the setup.py file equivalents fields for pyrpoject.toml per https://packaging.python.org/en/latest/guides/modernize-setup-py-project/

This commit is contained in:
David Paul Graham 2026-03-14 07:48:42 -04:00
parent 3b906d62c8
commit 77cbc16317
No known key found for this signature in database
GPG key ID: ACDB045B782EF333

View file

@ -1,3 +1,26 @@
[project]
name = "django-fernet-encrypted-fields"
version = "0.3.1"
description = "Symetrically encrypted model fields for Django"
readme = "README.md"
license = "MIT"
authors = [
{ name = "jazzband", email = "n.anahara@fragment.co.jp" },
]
requires-python = ">=3.8"
dependencies = [
"Django>=4.2",
"cryptography>=35.0.0",
]
[project.urls]
Homepage = "https://github.com/jazzband/django-fernet-encrypted-fields/"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
##################
# ruff
##################