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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
[project]
name = "pyppmd"
requires-python = ">=3.9"
description = "PPMd compression/decompression library"
readme = "README.rst"
license = {text = "LGPL-2.1-or-later"}
authors = [
{name = "Hiroshi Miura", email = "miurahr@linux.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-benchmark",
"pytest-cov",
"pytest-timeout",
"hypothesis",
"coverage[toml]>=5.2",
]
check = [
"mypy>=1.10.0",
"check-manifest",
"flake8",
"flake8-isort",
"flake8-black",
"readme-renderer",
"pygments"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
fuzzer = [
"atheris",
"hypothesis",
]
[project.urls]
Source = "https://codeberg.org/miurahr/pyppmd"
Homepage = "https://pyppmd.readthedocs.io/"
Documentation = "https://pyppmd.readthedocs.io/en/stable/"
"Bug Tracker" = "https://codeberg.org/miurahr/pyppmd/issues"
Changelog = "https://pyppmd.readthedocs.io/en/latest/changelog.html"
[build-system]
requires = ["setuptools>=59", "setuptools_scm[toml]>=6.4.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.setuptools.package-data]
pyppmd = ["py.typed"]
[tool.black]
line-length = 125
target-version = ['py312']
[tool.coverage.paths]
source = ["src", "**/site-packages"]
[tool.coverage.run]
branch = true
parallel = true
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true
exclude_lines = ["if __name__ == .__main__.:", "pragma: no-cover", "@abstract", "def __repr__"]
ignore_errors = true
[tool.mypy]
ignore_missing_imports = true
warn_redundant_casts = true
warn_unused_ignores = false
strict_optional = true
show_column_numbers = true
files = "*.py"
[tool.isort]
known_first_party = ["pyppmd", "_ppmd"]
known_third_party = ["docutils","flake8","pyannotate_runtime","pytest","pytz","setuptools","sphinx","yaml"]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 125
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
python_files = "test*.py"
norecursedirs = [".git", "_build", "tmp", ".eggs"]
[tool.cibuildwheel]
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"
manylinux-aarch64-image = "manylinux2014"
manylinux-ppc64le-image = "manylinux2014"
manylinux-s390x-image = "manylinux2014"
manylinux-pypy_x86_64-image = "manylinux2014"
manylinux-pypy_aarch64-image = "manylinux2014"
musllinux-x86_64-image = "musllinux_1_1"
musllinux-aarch64-image = "musllinux_1_1"
musllinux-ppc64le-image = "musllinux_1_1"
musllinux-s390x-image = "musllinux_1_1"
[tool.cibuildwheel.linux]
archs = ["auto64", "aarch64"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "universal2", "arm64"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = check, py{39,310,311,312,313}, pypy39, docs
[testenv]
passenv =
PYTEST_ADDOPTS
SETUPTOOLS_USE_DISTUTILS
extras = test
commands =
python -m pytest -vv -s
[testenv:pypy39]
basepython = pypy3.9
[testenv:check]
basepython = python3.12
extras = check
ignore_errors=true
commands =
check-manifest {toxinidir}
flake8 src tests setup.py
[testenv:docs]
basepython = python3.12
extras = docs
commands =
sphinx-build {posargs:-E} -b html docs build/html
"""
|