forked from AbolfazlB3/flow-py-sdk-python3.8
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 936 Bytes
/
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
[tool.poetry]
name = "flow-py-sdk"
version = "1.1.0"
description = "A python SKD for the flow blockchain"
authors = ["Janez Podhostnik <[email protected]>", "Abolfazl Bakiasay <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/janezpodhostnik/flow-py-sdk"
[tool.poetry.dependencies]
python = "^3.8"
betterproto = {extras = ["compiler"], version = "^1.2.5"}
grpcio-tools = "^1.33.2"
ecdsa = "^v0.17.0"
rlp = "^2.0.1"
phe = "^1.4.0"
grpclib = "^0.4.1"
[tool.poetry.dev-dependencies]
coloredlogs = "^15.0"
toml = "^0.10.2"
black = "^21.4b2"
pytest = "^6.2.3"
mkdocs = "^1.1.2"
mkdocs-material = "^7.1.4"
mkdocstrings = "^0.15.0"
coverage = "^5.5"
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
[tool.poetry.scripts]
examples = 'examples.main:run'
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"