-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
61 lines (56 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "asymmetric_jwt_auth"
version = "1.0.1"
description = "Asymmetric key based authentication for HTTP APIs"
authors = ["Craig Weber <[email protected]>"]
maintainers = ["Craig Weber <[email protected]>"]
readme = "README.rst"
homepage = "https://gitlab.com/crgwbr/asymmetric_jwt_auth"
repository = "https://gitlab.com/crgwbr/asymmetric_jwt_auth"
license = "ISC"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
]
packages = [
{ include = "asymmetric_jwt_auth", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
cryptography = ">=3.4.6"
Django = ">=4.2"
PyJWT = ">=2.0.1"
[tool.poetry.group.dev.dependencies]
coverage = ">=5.5"
django-stubs = ">=1.7.0"
flake8 = ">=3.2.1"
freezegun = ">=1.1.0"
mypy = ">=0.812"
sphinx-rtd-theme = ">=0.5.1"
sphinx = ">=3.5.1"
types-cryptography = ">=0.1.1"
typing = ">=3.7.4.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
name = "cz_conventional_commits"
annotated_tag = true
gpg_sign = true
tag_format = "v$version"
update_changelog_on_bump = true
changelog_merge_prerelease = true
version_provider = "poetry"
version_scheme = "pep440"
version_files = [
"pyproject.toml:version",
]
pre_bump_hooks = [
"pre-commit run --all-files || true",
]
post_bump_hooks = [
"git push origin master $CZ_POST_CURRENT_TAG_VERSION"
]