generated from olivmath/template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
58 lines (53 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "merkly"
version = "1.3.0"
description = "🌳 The simple and easy implementation of Merkle Tree"
authors = ["Lucas Oliveira <[email protected]>"]
repository = "https://github.com/olivmath/merkly.git"
documentation = "https://pypi.org/project/merkly/"
readme = "README.md"
license = "MIT"
keywords = [
"merkle-tree",
"merkle-proof",
"merkle-root",
"keccak256",
"blockchain",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security :: Cryptography"
]
[tool.poetry.dependencies]
pycryptodome = "^3.19.0"
pydantic = "^2.9.2"
python = "^3.8"
keccaky = "^0.3.1"
[tool.poetry.dev-dependencies]
conventional-pre-commit = "^3.0.0"
pre-commit = "^3.0.3"
coverage = "^7.2.7"
pyclean = "^3.0.0"
pytest = "^8.3.3"
black = "^24.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
w-t = "scripts.poetry:w_t"
lint = "scripts.poetry:lint"
[tool.pytest.ini_options]
markers = [
"merkletreejs: marks tests as merkletreejs (deselect with '-m \"not merkletreejs\"')",
"benchmark: marks tests as benchmark (deselect with '-m \"not benchmark\"')",
]