-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move build config from setup.cfg to pyproject.toml
- Loading branch information
Showing
5 changed files
with
72 additions
and
68 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
extend-ignore = E203 | ||
max-line-length = 88 |
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
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 |
---|---|---|
|
@@ -7,6 +7,73 @@ backend-path = [ | |
"_custom_build", | ||
] | ||
|
||
[project] | ||
name = "pillow" | ||
description = "Python Imaging Library (Fork)" | ||
readme = "README.md" | ||
keywords = [ | ||
"Imaging", | ||
] | ||
license = {text = "HPND"} | ||
authors = [{name = "Jeffrey A. Clark (Alex)", email = "[email protected]"}] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 6 - Mature", | ||
"License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"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", | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
[project.optional-dependencies] | ||
docs = [ | ||
"furo", | ||
"olefile", | ||
"sphinx>=2.4", | ||
"sphinx-copybutton", | ||
"sphinx-inline-tabs", | ||
"sphinx-removed-in", | ||
"sphinxext-opengraph", | ||
] | ||
tests = [ | ||
"check-manifest", | ||
"coverage", | ||
"defusedxml", | ||
"markdown2", | ||
"olefile", | ||
"packaging", | ||
"pyroma", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-timeout", | ||
] | ||
[project.urls] | ||
Changelog = "https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst" | ||
Documentation = "https://pillow.readthedocs.io" | ||
Funding = "https://tidelift.com/subscription/pkg/pypi-pillow?utm_source=pypi-pillow&utm_medium=pypi" | ||
Homepage = "https://python-pillow.org" | ||
Mastodon= "https://fosstodon.org/@pillow" | ||
"Release notes" = "https://pillow.readthedocs.io/en/stable/releasenotes/index.html" | ||
Source = "https://github.com/python-pillow/Pillow" | ||
Twitter = "https://twitter.com/PythonPillow" | ||
|
||
[tool.setuptools] | ||
packages = ["PIL"] | ||
include-package-data = true | ||
package-dir = {"" = "src"} | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
|