-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
60 lines (53 loc) · 1.35 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
59
60
[tool.poetry]
name = "eciespy"
packages = [
{include = "ecies"},
]
version = "0.4.3"
# docs
authors = ["Weiliang Li <[email protected]>"]
description = "Elliptic Curve Integrated Encryption Scheme for secp256k1 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.8"
# 3rd party
coincurve = ">=13,<21"
eth-keys = ">=0.4,<0.7"
pycryptodome = "^3.19.1"
[tool.poetry.group.dev.dependencies]
ipython = {version = "^8.29.0", python = "^3.10"}
mypy = "^1.11.2"
ruff = "^0.7.3"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-cov = {version = "^6.0.0", python = "^3.9"}
[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"