-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 1.23 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
[tool.poetry]
name = "eth-2-key-manager-api-client"
version = "0.3.0"
description = "A client library for accessing ETH2 key manager API"
authors = ["Karol Piwowarski <[email protected]>"]
readme = "README.md"
packages = [
{include = "eth_2_key_manager_api_client"}
]
include = ["CHANGELOG.md", "eth_2_key_manager_api_client/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.25.0"
attrs = "23.1.0"
exceptiongroup = {version = "^1.2.0", markers = "python_version == '3.9.*' or python_version == '3.10.*'"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
pytest-httpx = "^0.26.0"
python-dotenv = "^1.0.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.1"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
markdown-include = "^0.8.1"
[project.urls]
Changelog = "https://github.com/SlingNode/eth-2-key-manager-api-client/blob/master/CHANGELOG.md"
Documentation = "https://eth-2-key-manager-api-client.slingnode.com"
Homepage = "https://github.com/SlingNode/eth-2-key-manager-api-client"
Source = "https://github.com/SlingNode/eth-2-key-manager-api-client"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"