summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 0c7cc65c947fd78860e50f7ba16d3f06b7063186 (plain)
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
[build-system]
requires = [
    "setuptools >= 77.0.3",
    "wheel"
]

build-backend = "setuptools.build_meta"


[project]
name = "pyotp2289"
description = "A pure Python implementation of 'A One-Time Password System'"
dynamic = ["version"]
license = "BSD-2-Clause"
authors = [{name = "Simeon Simeonov"}]
readme = "README.md"
requires-python = ">= 3.10"

classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Intended Audience :: System Administrators",
    "Programming Language :: Python :: 3",
    "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",
    "Programming Language :: Python :: 3.15",
    "Operating System :: OS Independent",
    "Topic :: Security :: Cryptography",
]


[dependency-groups]
dev = [
    "pytest>=7",
    "ruff>=0.15.0",
    "ty>=0.0.31",
]


[project.scripts]
otp2289 = "otp2289.__main__:main"


[project.urls]
Homepage = "https://codeberg.org/sgs/pyotp2289"
Repository = "https://codeberg.org/sgs/pyotp2289"
Issues = "https://codeberg.org/sgs/pyotp2289/issues"
Changelog = "https://codeberg.org/sgs/pyotp2289/src/branch/master/CHANGELOG.md"


[tool.pytest.ini_options]
minversion = "7.0"
cache_dir = "~/.cache/pytest_cache"
pythonpath = [
    "src"
]
testpaths = [
    "tests"
]


[tool.setuptools.dynamic]
version = {attr = "otp2289.__version__"}


[tool.ty.environment]
python-version = "3.10"
root = ["./src"]