-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "django-secured-fields"
version = "0.0.0"
description = ""
authors = ["CODIUM <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/C0D1UM/django-secured-fields"
keywords = ["django", "encrypted", "fields", "drf", "django-rest", "restframework", "search", "encryption", "hash"]
packages = [
{ include = "secured_fields" },
]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.1"
cryptography = ">=35"
[tool.poetry.dev-dependencies]
pylint = "^2"
yapf = "^0"
toml = "^0"
ipdb = "^0"
psycopg2-binary = "^2.9"
mysqlclient = "^2.1"
freezegun = "^1.1"
django-environ = "^0.8"
Pillow = "^10.3"
django-extensions = "^3.0"
coverage = "^6"
"backports.zoneinfo" = { version = "^0.2", python = "~3.8" }
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.yapf]
based_on_style = 'google'
column_limit = 120
coalesce_brackets = true
dedent_closing_brackets = true
split_arguments_when_comma_terminated = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"