forked from holochain/holochain-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 725 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 725 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
[tool.poetry]
name = "holochain-client"
version = "0.1.0"
description = "A Python client for the Holochain Conductor API"
authors = [
"ThetaSinner <ThetaSinner@users.noreply.github.com>",
]
readme = "README.md"
license = "CAL 1.0"
keywords = ["holochain", "conductor-api"]
include = ["CHANGELOG.md"]
packages = [
{ include = "holochain_client" }
]
[tool.poetry.dependencies]
python = "^3.8"
msgpack = "^1.0.7"
websockets = "^12.0"
holochain-serialization = "^0.1.0"
cryptography = "^42.0.2"
ruff = "^0.2.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.23.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"