forked from StabilityNexus/MiniChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 741 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 741 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
35
36
37
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "minichain"
version = "0.1.0-beta"
description = "MiniChain — a minimal proof-of-work blockchain node"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"pynacl==1.6.2",
"trie>=3.1.0",
"libp2p",
"aiohttp>=3.10.11",
"multiaddr",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
minichain = "main:main"
[project.urls]
Homepage = "https://github.com/StabilityNexus/MiniChain"
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
include = ["minichain*"]