-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 763 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
[tool.poetry]
name = "blockchain-engineering"
version = "1.0.0"
description = "A collection of notebooks that helps to design and simulate own blockchain-like system from scratch."
authors = ["grimadas <bulat.nasrulin@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/grimadas/BlockchainEngineering"
repository = "https://github.com/grimadas/BlockchainEngineering"
keywords = ["simulation","blockchain","notebook","distributed-systems"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
p2psimpy = "^0.1.0"
pandas = "^1.3.5"
jupyter = "^1.0.0"
ipykernel = "^6.6.0"
matplotlib = "^3.5.1"
seaborn = "^0.11.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"