-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.15 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
[tool.poetry]
name = "iscc-evm"
version = "0.1.4"
description = "EVM Smart Contracts for ISCC declarations"
authors = ["Titusz <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/iscc/iscc-evm"
keywords=["iscc", "identifier", "decentralized", "registry", "blockchain", "similarity"]
[tool.poetry.urls]
"Changelog" = "https://github.com/iscc/iscc-evm/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/iscc/iscc-evm/issues"
"Twitter" = "https://twitter.com/iscc_foundation"
"Donate" = "https://iscc.foundation/support"
[tool.poetry.dependencies]
python = ">3.7.1,<3.10"
vyper = "^0.3.4"
web3 = "^5.30.0"
loguru = "^0.6.0"
pydantic = {extras = ["dotenv"], version = "*"}
platformdirs = "^2.5.2"
iscc-core = "^0.2.11"
jcs = "^0.2.1"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "^22.1"
poethepoet = "^0.13"
[tool.poe.tasks]
format = { cmd = "poetry run black .", help = "Code style formating with black" }
build = { cmd = "poetry run python -m iscc_evm.build", help = "Build vyper contracts and abi"}
all = ["format", "build"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"