-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 914 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 914 Bytes
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
[tool.poetry]
name = "evervault"
version = "5.1.0"
description = "Evervault SDK"
authors = ["Evervault <engineering@evervault.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://evervault.com"
repository = "https://github.com/evervault/evervault-python"
[tool.poetry.dependencies]
python = "^3.10.0"
requests = "^2.32.4"
cryptography = ">=44.0.3"
certifi = "*"
pycryptodome = "^3.10.1"
pyasn1 = "^0.4.8"
evervault-attestation-bindings = "0.5.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-socket = "^0.4.1"
requests-mock = "^1.9.3"
flake8 = "^7.2.0"
black = "^25.1.0"
parameterized = "^0.9.0"
[tool.poetry.group.dev.dependencies]
responses = "^0.25.7"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"