-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (47 loc) · 1.55 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
[project]
name = "SLH-DSA"
version = "0.1.3"
description = "The pure python implement of the slh-dsa algorithm(based on fips205)."
authors = [
{name = "Colinxu2020", email = "[email protected]"},
]
dependencies = [
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "LGPL-3.0-or-later"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent"
]
keywords = ['fips205', 'slhdsa', 'sphincs', 'sphincsplus', 'crypto', 'cryptography']
[project.urls]
"Homepage" = "https://github.com/colinxu2020/slhdsa"
"Bug Tracker" = "https://github.com/colinxu2020/slhdsa/issues"
[build-system]
requires = ["setuptools>=61", "wheel", "mypy>=1.10.1", "tomli>=1.1.0; python_version<'3.11'"]
build-backend = "setuptools.build_meta"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.2.2",
"mypy>=1.10.1",
"pytest-cov>=5.0.0",
]