-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (65 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ecutils"
description = "Python Library for Elliptic Curve Cryptography: key exchanges (Diffie-Hellman, Massey-Omura), ECDSA signatures, and Koblitz encoding. Suitable for crypto education and secure systems."
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
keywords = [
"ecutils",
"ec",
"ecdh",
"eck",
"ecdsa",
"ecmo",
"secure-communication",
"public-key-cryptography",
"cryptographic-algorithms",
"digital-signatures",
"python-cryptography",
"elliptic-curve-cryptography",
"diffie-hellman-key-exchange",
"ecc-based-protocols",
"message-encoding-and-decoding",
"koblitz-encoding",
"massey-omura-protocol",
"elliptic-curve-operation"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Build Tools",
"Natural Language :: English",
]
authors = [
{name = "Isak Paulo de Andrade Ruas", email = "[email protected]"},
{name = "Celimar Reijane Alves Damasceno Paiva", email = "[email protected]"},
{name = "Fernando Marcos Souza Silva", email = "[email protected]"},
]
maintainers = [
{name = "Isak Paulo de Andrade Ruas", email = "[email protected]"}
]
requires-python = ">=3.9"
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://ecutils.readthedocs.io/en/stable/"
Documentation = "https://ecutils.readthedocs.io/en/stable/"
Repository = "https://github.com/isakruas/ecutils.git"
"Bug Tracker" = "https://github.com/isakruas/ecutils/issues"
Changelog = "https://github.com/isakruas/ecutils/blob/master/CHANGELOG.md"
[tool.hatch.package]
source-dir = "src"
[tool.hatch.version]
path = "src/ecutils/__init__.py"