-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.17 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
[tool.poetry]
name = "python-paseto"
version = "0.5.2"
description = "Platform-Agnostic Security Tokens for Python"
authors = []
license = "MIT"
packages = [{ include = "paseto" }]
readme = "README.md"
homepage = "https://github.com/purificant/python-paseto"
repository = "https://github.com/purificant/python-paseto"
documentation = "https://github.com/purificant/python-paseto"
keywords = ["paseto", "token", "security", "crypto"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Development Status :: 5 - Production/Stable",
]
[tool.poetry.dependencies]
python = "^3.8"
pysodium = "^0.7.17"
[tool.poetry.dev-dependencies]
black = "^24.4.0"
codespell = "^2.2.6"
coverage = "^7"
cython = "^3.0.7"
isort = "^5.13"
mypy = "^1.7"
pylama = "^8.4"
pylint = "^3.0"
pynacl = "^1.5"
pytest = "^8.1"
pytest-benchmark = "^4.0"
ruff = "^0.4.1"
setuptools = "^69.0.2"
[tool.black]
exclude = '/(submodules)/'
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"