-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (38 loc) · 1.39 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
# SPDX-FileCopyrightText: Daniele Nicolodi <[email protected]>
# SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
[build-system]
requires = [
"cython >= 3.0.2",
"meson >= 1.0.0",
"meson-python >= 0.14.0",
]
build-backend = "mesonpy"
[project]
name = "siphash24"
version = "1.7"
description = "Streaming-capable SipHash-1-3 and SipHash-2-4 Implementation"
readme = "README.rst"
maintainers = [
{ name = "Daniele Nicolodi", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"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",
"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"