forked from python-pillow/Pillow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
603 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,76 +10,12 @@ backend-path = [ | |
[project] | ||
name = "pillow" | ||
description = "Python Imaging Library (Fork)" | ||
readme = "README.md" | ||
keywords = [ | ||
"Imaging", | ||
] | ||
version = "11.1.0" | ||
license = { text = "MIT-CMU" } | ||
authors = [ | ||
{ name = "Jeffrey A. Clark", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Development Status :: 6 - Mature", | ||
"License :: OSI Approved :: CMU License (MIT-CMU)", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"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 :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Multimedia :: Graphics", | ||
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera", | ||
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture", | ||
"Topic :: Multimedia :: Graphics :: Graphics Conversion", | ||
"Topic :: Multimedia :: Graphics :: Viewers", | ||
"Typing :: Typed", | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
optional-dependencies.docs = [ | ||
"furo", | ||
"olefile", | ||
"sphinx>=8.2", | ||
"sphinx-copybutton", | ||
"sphinx-inline-tabs", | ||
"sphinxext-opengraph", | ||
] | ||
optional-dependencies.fpx = [ | ||
"olefile", | ||
] | ||
optional-dependencies.mic = [ | ||
"olefile", | ||
] | ||
optional-dependencies.tests = [ | ||
"check-manifest", | ||
"coverage>=7.4.2", | ||
"defusedxml", | ||
"markdown2", | ||
"olefile", | ||
"packaging", | ||
"pyroma", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-timeout", | ||
"trove-classifiers>=2024.10.12", | ||
] | ||
optional-dependencies.typing = [ | ||
"typing-extensions; python_version<'3.10'", | ||
] | ||
optional-dependencies.xmp = [ | ||
"defusedxml", | ||
] | ||
urls.Changelog = "https://github.com/python-pillow/Pillow/releases" | ||
urls.Documentation = "https://pillow.readthedocs.io" | ||
urls.Funding = "https://tidelift.com/subscription/pkg/pypi-pillow?utm_source=pypi-pillow&utm_medium=pypi" | ||
urls.Homepage = "https://python-pillow.github.io" | ||
urls.Mastodon = "https://fosstodon.org/@pillow" | ||
urls."Release notes" = "https://pillow.readthedocs.io/en/stable/releasenotes/index.html" | ||
urls.Source = "https://github.com/python-pillow/Pillow" | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
|
@@ -92,79 +28,5 @@ package-dir = { "" = "src" } | |
before-all = ".github/workflows/wheels-dependencies.sh" | ||
build-verbosity = 1 | ||
|
||
config-settings = "raqm=enable raqm=vendor fribidi=vendor imagequant=disable" | ||
# Disable platform guessing on macOS | ||
macos.config-settings = "platform-guessing=disable" | ||
|
||
[tool.cibuildwheel.macos.environment] | ||
PATH = "$(pwd)/build/deps/darwin/bin:$(dirname $(which python3)):/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin" | ||
|
||
[tool.black] | ||
exclude = "wheels/multibuild" | ||
|
||
[tool.ruff] | ||
exclude = [ "wheels/multibuild" ] | ||
|
||
fix = true | ||
lint.select = [ | ||
"C4", # flake8-comprehensions | ||
"E", # pycodestyle errors | ||
"EM", # flake8-errmsg | ||
"F", # pyflakes errors | ||
"I", # isort | ||
"ISC", # flake8-implicit-str-concat | ||
"LOG", # flake8-logging | ||
"PGH", # pygrep-hooks | ||
"PT", # flake8-pytest-style | ||
"PYI", # flake8-pyi | ||
"RUF100", # unused noqa (yesqa) | ||
"UP", # pyupgrade | ||
"W", # pycodestyle warnings | ||
"YTT", # flake8-2020 | ||
] | ||
lint.ignore = [ | ||
"E203", # Whitespace before ':' | ||
"E221", # Multiple spaces before operator | ||
"E226", # Missing whitespace around arithmetic operator | ||
"E241", # Multiple spaces after ',' | ||
"PT001", # pytest-fixture-incorrect-parentheses-style | ||
"PT007", # pytest-parametrize-values-wrong-type | ||
"PT011", # pytest-raises-too-broad | ||
"PT012", # pytest-raises-with-multiple-statements | ||
"PT017", # pytest-assert-in-except | ||
"PYI026", # flake8-pyi: typing.TypeAlias added in Python 3.10 | ||
"PYI034", # flake8-pyi: typing.Self added in Python 3.11 | ||
] | ||
lint.per-file-ignores."Tests/oss-fuzz/fuzz_font.py" = [ | ||
"I002", | ||
] | ||
lint.per-file-ignores."Tests/oss-fuzz/fuzz_pillow.py" = [ | ||
"I002", | ||
] | ||
lint.flake8-pytest-style.parametrize-names-type = "csv" | ||
lint.isort.known-first-party = [ | ||
"PIL", | ||
] | ||
lint.isort.required-imports = [ | ||
"from __future__ import annotations", | ||
] | ||
|
||
[tool.pyproject-fmt] | ||
max_supported_python = "3.13" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-ra --color=yes" | ||
testpaths = [ | ||
"Tests", | ||
] | ||
|
||
[tool.mypy] | ||
python_version = "3.9" | ||
pretty = true | ||
disallow_any_generics = true | ||
enable_error_code = "ignore-without-code" | ||
extra_checks = true | ||
follow_imports = "silent" | ||
warn_redundant_casts = true | ||
warn_unreachable = true | ||
warn_unused_ignores = true |
Oops, something went wrong.