-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.03 KB
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "encrypted-json-field"
version = "1.1.5dev0"
authors = [
{ name="El Majidi", email="[email protected]" },
]
description = "Encrypted JSON field supports automatic encryption/ decryption of JSON fields with padding to conceal start and end of value."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pycryptodome==3.20.0",
"Django>=4.2",
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
]
[project.urls]
"Homepage" = "https://github.com/MurphyAdam/encrypted-json-field"
"Bug Tracker" = "https://github.com/MurphyAdam/encrypted-json-field/issues"