-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.03 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
[tool.poetry]
name = "python-chianode"
version = "1.0.0"
description = "Python wrapper for Chia blockchain node APIs"
authors = ["CircuitDAO <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "chianode"}]
homepage = "https://github.com/circuitdao/python-chianode"
keywords = ["Chia", "blockchain", "node", "full node", "wrapper", "API"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/python-poetry/poetry/issues"
[tool.poetry.dependencies]
python = "^3.8.1"
anyio = "^3.7.0"
build = "0.10.0"
certifi = "2023.7.22"
h11 = "0.14.0"
h2 = "4.1.0"
hpack = "4.0.0"
httpcore = "0.17.3"
httpx = "0.24.1"
hyperframe = "6.0.1"
idna = "3.4"
iniconfig = "2.0.0"
packaging = "^23.0"
pluggy = "1.2.0"
pyproject_hooks = "1.0.0"
sniffio = "1.3.0"
pyyaml = "^6.0.0"
chia-blockchain = "2.0.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
chia-blockchain = "2.0.1"
pytest = "7.4.0"
pytest-asyncio = "0.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"