-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (65 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
79 lines (65 loc) · 1.69 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "eciespy"
packages = [
{include = "ecies"},
]
version = "0.4.7"
# docs
authors = ["Weiliang Li <[email protected]>"]
description = "Elliptic Curve Integrated Encryption Scheme for secp256k1/curve25519 in Python"
license = "MIT"
maintainers = ["Weiliang Li <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ecies/py"
# tags
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
]
keywords = [
"secp256k1",
"crypto",
"elliptic curves",
"ecies",
"bitcoin",
"ethereum",
"cryptocurrency",
]
# package data
include = ["ecies/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
# for @deprecated
typing-extensions = ">=4.9.0"
# 3rd party
coincurve = ">=13,<22"
pycryptodome = ">=3.21.0"
# optional
eth-keys = {version = ">=0.4,<0.8", optional = true}
[tool.poetry.extras]
eth = ["eth-keys"]
[tool.poetry.group.dev.dependencies]
ipython = {version = "^9.7.0", python = "^3.11"}
ruff = "^0.14.5"
ty = "^0.0.1a27"
eth-typing = "^5.2.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.4.2"
pytest-cov = "^6.3.0"
[tool.poetry.scripts]
eciespy = "ecies.__main__:main"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov=ecies --cov-report term:skip-covered"
[tool.coverage.run]
omit = ["ecies/__main__.py"]
[tool.coverage.report]
exclude_also = ["if TYPE_CHECKING:", "raise NotImplementedError"]
[tool.ty.rules]
deprecated = "ignore"