-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
116 lines (100 loc) · 2.62 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = [
"setuptools >= 61",
"setuptools_scm[toml] >= 6.4"
]
build-backend = "setuptools.build_meta"
[project]
name = "cbor2"
description = "CBOR (de)serializer with extensive tag support"
readme = "README.rst"
authors = [{name = "Alex Grönholm", email = "[email protected]"}]
maintainers = [{name = "Kio Smallwood (Sekenre)", email = "[email protected]"}]
license = {text = "MIT"}
keywords = ["serialization", "cbor"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.9"
dynamic = ["version"]
[project.urls]
Changelog = "https://cbor2.readthedocs.io/en/latest/versionhistory.html"
Documentation = "https://cbor2.readthedocs.org/en/latest/"
"Source Code" = "https://github.com/agronholm/cbor2"
"Issue Tracker" = "https://github.com/agronholm/cbor2/issues"
[project.optional-dependencies]
test = [
"coverage >= 7",
"pytest",
"hypothesis",
]
doc = [
"packaging",
"Sphinx >= 7",
"sphinx-rtd-theme >= 1.3.0",
"sphinx-autodoc-typehints >= 1.2.0",
"typing_extensions; python_version < '3.12'",
]
benchmarks = [
"pytest-benchmark==4.0.0",
]
[project.scripts]
cbor2 = "cbor2.tool:main"
[tool.setuptools.packages.find]
include = ["cbor2"]
[tool.ruff]
line-length = 99
[tool.ruff.lint]
extend-select = [
"I", # isort
"ISC", # flake8-implicit-str-concat
"PGH", # pygrep-hooks
"RUF100", # unused noqa (yesqa)
"UP", # pyupgrade
"W", # pycodestyle warnings
]
ignore = ["ISC001"]
[tool.mypy]
strict = true
[tool.pytest.ini_options]
addopts = "-rsx --tb=short"
testpaths = ["tests"]
[tool.coverage.run]
source = ["cbor2"]
relative_files = true
[tool.coverage.report]
show_missing = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39, py310, py311, py312, py313, pypy3
skip_missing_interpreters = true
minversion = 4.0.0
[testenv]
commands = python -m pytest {posargs}
package = editable
extras = test
setenv =
TZ=America/New_York
CBOR2_BUILD_C_EXTENSION=1
[testenv:pypy3]
setenv =
TZ=America/New_York
[testenv:docs]
extras = doc
commands = sphinx-build -W -n docs build/sphinx
package = wheel
[testenv:.pkg-docs]
setenv =
CBOR2_BUILD_C_EXTENSION=0
"""