-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.48 KB
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
[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.10"
pysodium = "^0.7.17"
[tool.poetry.group.dev.dependencies]
codespell = "^2.2.6"
coverage = "^7"
cython = "^3.0.7"
mypy = "^1.7"
pylint = "^4.0"
pynacl = "^1.5"
pip-audit = "^2.10"
pre-commit = "^4.0"
pytest = "^9.0"
pytest-benchmark = "^5.2"
ruff = "^0.16.0"
setuptools = "^83.0"
[tool.ruff]
# vendored code, not ours to lint or format
extend-exclude = ["submodules"]
# ruff only reads [project] requires-python, which this legacy [tool.poetry] layout lacks,
# so it falls back to its own default. keep in sync with tool.poetry.dependencies.python
# until the pyproject moves to PEP 621.
target-version = "py310"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.9"