forked from seznam/nats-jwt-py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (32 loc) · 954 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
39
[tool.poetry]
name = "nats-jwt"
version = "0.2.0"
description = "NATS JWT tokens signed using NKeys for the Python3 ecosystem"
authors = ["Seznam.cz, a.s. <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "nats_jwt"}]
[tool.poetry.dependencies]
python = "^3.9"
nkeys = "^0.2.0"
pycryptodome = "^3.20.0"
pytz = "^2024.1"
dataclasses-json = "^0.6.4"
dacite = "^1.8.1"
pysodium = "^0.7.18"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.commitizen.dependencies]
commitizen = ">=3.15.0"
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "poetry"
tag_format = "v$version"
bump_message = "🔖 version $current_version → $new_version [release]"
update_changelog_on_bump = true
annotated_tag = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
coverage = { version = "^7.3.2", extras = ["toml"] }
swiftmock = "^0.0.1"