forked from purificant/python-paseto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.7"
pysodium = "^0.7.12"
[tool.poetry.dev-dependencies]
black = "^22.3"
codespell = "^2.1.0"
coverage = "^6"
coveralls = "^3.3"
cython = "^0.29.30"
isort = "^5.10"
mypy = "^0.950"
pylama = "^8.3"
pylint = "^2.13"
pynacl = "^1.5"
pytest = "^7.1"
pytest-benchmark = "^3.4"
tox = "^3.25"
[tool.black]
exclude = '/(submodules|.tox)/'
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"