1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'lib1305'
description = 'Python wrapper around implementation of the Poly1305 one-time authenticator'
readme = 'README.md'
requires-python = '>=3.7'
license = {file = 'LICENSE'}
authors = [
{name = 'Jan Mojžíš', email = 'jan.mojzis@gmail.com'},
]
version = '20250415.2'
[tool.pytest.ini_options]
minversion = '6.0'
addopts = '-ra -v'
testpaths = [
'tests',
]
pythonpath = [
'src',
]
|