forked from dcwatson/django-pgcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 880 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
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-pgcrypto"
authors = [
{name = "Dan Watson", email = "[email protected]"},
]
description = "Python and Django utilities for encrypted fields using pgcrypto."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = {text = "BSD-2-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Programming Language :: Python :: 3",
"Topic :: Database",
]
dependencies = [
"cryptography",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/dcwatson/django-pgcrypto"
[tool.setuptools]
packages = ["pgcrypto"]
[tool.setuptools.dynamic]
version = {attr = "pgcrypto.__version__"}
[tool.uv]
dev-dependencies = [
"django",
"psycopg[binary]",
]