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
|
# SPDX-FileCopyrightText: Daniele Nicolodi <daniele@grinta.net>
# SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
[build-system]
requires = [
"cython >= 3.1.0",
"meson >= 1.0.0",
"meson-python >= 0.18.0",
]
build-backend = "mesonpy"
[project]
name = "siphash24"
version = "1.8"
license = "Apache-2.0 OR LGPL-2.1-or-later"
description = "Streaming-capable SipHash-1-3 and SipHash-2-4 Implementation"
readme = "README.rst"
maintainers = [
{ name = "Daniele Nicolodi", email = "daniele@grinta.net" },
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Software Development :: Libraries",
]
[project.urls]
"Documentation" = "https://dnicolodi.github.io/python-siphash24/"
"Source" = "https://github.com/dnicolodi/python-siphash24/"
"Issue Tracker" = "https://github.com/dnicolodi/python-siphash24/issues"
|