-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
73 lines (59 loc) · 1.67 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
70
71
72
73
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2"]
[project]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: ISC License (ISCL)"
]
description = "Python module (in c) for siphash-2-4"
keywords = ["siphash", "siphash-2-4"]
name = "siphashc"
requires-python = ">=3.9"
version = "2.5"
[[project.authors]]
email = "[email protected]"
name = "Michal Čihař"
[project.license]
text = "ISC"
[project.optional-dependencies]
test = ["pytest"]
[project.readme]
content-type = "text/x-rst"
file = "README.rst"
[project.urls]
Funding = "https://weblate.org/donate/"
Homepage = "https://github.com/WeblateOrg/siphashc"
"Issue Tracker" = "https://github.com/WeblateOrg/siphashc/issues"
"Source Code" = "https://github.com/WeblateOrg/siphashc"
Twitter = "https://twitter.com/WeblateOrg"
[tool.cibuildwheel]
test-command = "pytest {project}/test_siphashc.py {project}/README.rst"
test-extras = "test"
[tool.isort]
profile = "black"
[tool.ruff]
ignore = [
"S101", # CONFIG: using pytest
"D203", # CONFIG: incompatible with D211
"D212" # CONFIG: incompatible with D213
]
select = ["ALL"]
[tool.ruff.lint.isort]
known-first-party = ["siphashc"]
known-third-party = ["pytest"]
[tool.ruff.mccabe]
max-complexity = 16
[tool.ruff.per-file-ignores]
"benchmark.py" = ["T201"]
[tool.setuptools]
include-package-data = true
zip-safe = true
[tool.setuptools.packages.find]
include = ["siphashc*"]
namespaces = true