-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.64 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
[project]
name = "fastecdsa"
version = "3.0.0"
description = "Fast elliptic curve digital signatures"
readme = "README.rst"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Anton Kueltz", email = "kueltz.anton@gmail.com"}
]
keywords = ["elliptic", "curve", "cryptography", "ecdsa", "ecc"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security :: Cryptography",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
]
[project.urls]
repo = "https://github.com/AntonKueltz/fastecdsa"
docs = "https://fastecdsa.readthedocs.io"
pypi = "https://pypi.org/project/fastecdsa/"
[project.scripts]
benchmark = "fastecdsa.benchmark:run"
[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
omit = [
"fastecdsa/benchmark.py",
"fastecdsa/encoding/__init__.py"
]
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "--cov=fastecdsa --cov-report=term-missing --cov-fail-under=95"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ['fastecdsa*']
[dependency-groups]
dev = [
"mypy>=1.14.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"ruff>=0.8.4",
"setuptools>=75.6.0",
"sphinx-rtd-theme>=3.0.2",
"sphinx>=7.4.7",
"pytest-cov>=6.0.0",
]