File: pyproject.toml

package info (click to toggle)
python-lib1305 0~20250415.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 116 kB
  • sloc: python: 184; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 498 bytes parent folder | download
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',
]