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
|
[project]
name = "pybcj"
requires-python = ">=3.10"
description = "bcj filter library"
keywords = ["lzma", "bcj"]
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.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 :: 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-cov",
"hypothesis",
"coverage[toml]>=5.2",
]
check = [
"mypy>=1.10.0",
"check-manifest",
"flake8<8",
"flake8-black",
"flake8-colors",
"flake8-isort",
"flake8-pyi",
"flake8-typing-imports",
"readme-renderer",
"pygments",
]
[project.urls]
Homepage = "https://pypi.org/project/pybcj"
"Bug Tracker" = "https://github.com/miurahr/pybcj/issues"
Source = "https://github.com/miurahr/pybcj"
Changelog = "https://github.com/miurahr/pybcj/blob/main/Changelog.rst"
[build-system]
requires = ["setuptools>=58", "wheel", "setuptools_scm[toml]>=6.0.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.coverage.run]
branch = true
parallel = true
source = ["bcj"]
[tool.coverage.report]
show_missing = true
exclude_lines = ["if __name__ == .__main__.:", "pragma: no-cover", "@abstract", "def __repr__"]
[tool.black]
line-length = 125
target-version = ['py312']
[tool.isort]
known_first_party = ["bcj", "_bcj"]
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.cibuildwheel]
skip = ["pp*", "*-win32", "*-manylinux_i686", "*-musllinux_i686"]
manylinux-x86_64-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"
manylinux-ppc64le-image = "manylinux_2_28"
manylinux-s390x-image = "manylinux_2_28"
musllinux-x86_64-image = "musllinux_1_2"
musllinux-aarch64-image = "musllinux_1_2"
musllinux-ppc64le-image = "musllinux_1_2"
musllinux-s390x-image = "musllinux_1_2"
[tool.cibuildwheel.linux]
archs = ["auto64", "aarch64"]
[tool.cibuildwheel.macos]
archs = ["auto64", "universal2"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{310,311,312,313,314}, pypy3, check, mypy
isolated_build=True
[testenv]
passenv =
PYTEST_ADDOPTS
SETUPTOOLS_USE_DISTUTILS
extras = test
commands = python -m pytest -vv -s
[testenv:check]
extras = check
commands =
check-manifest {toxinidir}
flake8 src tests setup.py
[testenv:mypy]
extras = check
commands = mypy src/bcj
[mypy]
warn_redundant_casts = True
warn_unused_ignores = True
strict_optional = True
show_column_numbers = True
[mypy-bcj.*]
ignore_missing_imports = True
[pytest]
python_files = test*.py
norecursedirs = .git _build tmp* .eggs
addopts =
"""
|