-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.79 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
[build-system]
# The Apple linker does not recognise `-Bsymbolic-functions`, one of the
# arguments passed to it on macOS when building wheels for PyPy. Using an older
# version of setuptools fixes this problem.
requires = ["setuptools==70.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pysorteddict"
version = "0.2.1"
authors = [
{name = "Vishal Pankaj Chandratreya"},
]
description = "Python sorted dictionary: a Python dictionary in which the keys are always in ascending order"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
"Repository" = "https://github.com/tfpf/pysorteddict"
"Bug Tracker" = "https://github.com/tfpf/pysorteddict/issues"
[tool.cibuildwheel]
build = "cp* pp*"
test-command = "pytest {package}"
test-requires = ["pytest"]
# No use of an editable installation. If the code is edited, it has to be
# recompiled, and the package has to be reinstalled.
[tool.hatch.envs.default]
dev-mode = false
dependencies = ["pytest"]
[tool.ruff]
line-length = 119
[tool.ruff.lint.per-file-ignores]
"examples/*" = ["T201"]
"tests/*" = ["PLR2004", "S101", "S311"]