-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (79 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
93 lines (79 loc) · 2.31 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# -*- coding: utf-8 -*-
#
# This file is part of base32-lib
# Copyright (C) 2019 CERN.
# Copyright (C) 2019 Northwestern University.
# Copyright (C) 2025 Front Matter.
# base32-lib is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "base32-lib"
dynamic = ["version"]
description = "Small library to generate, encode and decode random base32 strings."
readme = "README.rst"
requires-python = ">=3.10"
license = { text = "MIT License" }
authors = [{ name = "Invenio Software", email = "info@inveniosoftware.org" }]
keywords = ["base32", "identifiers"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/inveniosoftware/base32-lib"
[project.optional-dependencies]
docs = ["Sphinx>=1.4.2"]
tests = [
"check-manifest>=0.49",
"pytest>=6.0,<9.0",
"pytest-cov>=3.0.0",
"pytest-black-ng>0.4.0",
"pytest-isort>=3.0.0",
"pytest-pycodestyle>=2.2.0",
"pytest-pydocstyle>=2.2.3",
]
all = ["base32-lib[docs,tests]"]
[dependency-groups]
test = ["pytest>=7.0", "pytest-cov>=4.0", "coverage>=7.0"]
[tool.setuptools]
packages = ["base32_lib"]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "base32_lib.__version__" }
[tool.setuptools.package-data]
"*" = ["*.py", "*.css", "*.css_t", "*.conf", "*.html"]
# Tool configurations migrated from setup.cfg
[tool.bdist_wheel]
universal = true
[tool.pydocstyle]
add-ignore = ["D401"]
[tool.isort]
known_first_party = ["base32_lib"]
multi_line_output = 2
default_section = "THIRDPARTY"
skip = [".eggs"]
[tool.pytest.ini_options]
addopts = [
"--black",
"--isort",
"--pydocstyle",
"--cov=base32_lib",
"--cov-report=term-missing",
"--cov-report=html",
"--cov-report=xml",
"--strict-markers",
"--strict-config",
]
testpaths = ["docs", "tests", "base32_lib"]
minversion = "7.0"