From da713e8830913b099fd7cbd089af3546258c3e72 Mon Sep 17 00:00:00 2001
From: "@hadesragnarokclassic"
<115194255+hadesragnarokclassic@users.noreply.github.com>
Date: Thu, 10 Nov 2022 17:07:19 +0700
Subject: [PATCH] Add files via upload
Signed-off-by: @hadesragnarokclassic <115194255+hadesragnarokclassic@users.noreply.github.com>
---
PKG-INFO | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
setup.cfg | 151 ++++++++++++++++++++++++++--------------------------
2 files changed, 232 insertions(+), 73 deletions(-)
create mode 100644 PKG-INFO
diff --git a/PKG-INFO b/PKG-INFO
new file mode 100644
index 000000000..99e870e48
--- /dev/null
+++ b/PKG-INFO
@@ -0,0 +1,154 @@
+Metadata-Version: 2.1
+Name: Pillow
+Version: 9.4.0.dev0
+Summary: Python Imaging Library (Fork)
+Home-page: https://python-pillow.org
+Author: Alex Clark (PIL Fork Author)
+Author-email: aclark@python-pillow.org
+License: HPND
+Project-URL: Documentation, https://pillow.readthedocs.io
+Project-URL: Source, https://github.com/python-pillow/Pillow
+Project-URL: Funding, https://tidelift.com/subscription/pkg/pypi-pillow?utm_source=pypi-pillow&utm_medium=pypi
+Project-URL: Release notes, https://pillow.readthedocs.io/en/stable/releasenotes/index.html
+Project-URL: Changelog, https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst
+Project-URL: Twitter, https://twitter.com/PythonPillow
+Keywords: Imaging
+Classifier: Development Status :: 6 - Mature
+Classifier: License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
+Classifier: Topic :: Multimedia :: Graphics
+Classifier: Topic :: Multimedia :: Graphics :: Capture :: Digital Camera
+Classifier: Topic :: Multimedia :: Graphics :: Capture :: Screen Capture
+Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
+Classifier: Topic :: Multimedia :: Graphics :: Viewers
+Requires-Python: >=3.7
+Description-Content-Type: text/markdown
+Provides-Extra: docs
+Provides-Extra: tests
+License-File: LICENSE
+
+
+
+
+
+# Pillow
+
+## Python Imaging Library (Fork)
+
+Pillow is the friendly PIL fork by [Alex Clark and
+Contributors](https://github.com/python-pillow/Pillow/graphs/contributors).
+PIL is the Python Imaging Library by Fredrik Lundh and Contributors.
+As of 2019, Pillow development is
+[supported by Tidelift](https://tidelift.com/subscription/pkg/pypi-pillow?utm_source=pypi-pillow&utm_medium=readme&utm_campaign=enterprise).
+
+
+
+ docs |
+
+
+ |
+
+
+ tests |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+ package |
+
+
+
+
+
+
+ |
+
+
+ social |
+
+
+
+ |
+
+
+
+## Overview
+
+The Python Imaging Library adds image processing capabilities to your Python interpreter.
+
+This library provides extensive file format support, an efficient internal representation, and fairly powerful image processing capabilities.
+
+The core image library is designed for fast access to data stored in a few basic pixel formats. It should provide a solid foundation for a general image processing tool.
+
+## More Information
+
+- [Documentation](https://pillow.readthedocs.io/)
+ - [Installation](https://pillow.readthedocs.io/en/latest/installation.html)
+ - [Handbook](https://pillow.readthedocs.io/en/latest/handbook/index.html)
+- [Contribute](https://github.com/python-pillow/Pillow/blob/main/.github/CONTRIBUTING.md)
+ - [Issues](https://github.com/python-pillow/Pillow/issues)
+ - [Pull requests](https://github.com/python-pillow/Pillow/pulls)
+- [Release notes](https://pillow.readthedocs.io/en/stable/releasenotes/index.html)
+- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
+ - [Pre-fork](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst#pre-fork)
+
+## Report a Vulnerability
+
+To report a security vulnerability, please follow the procedure described in the [Tidelift security policy](https://tidelift.com/docs/security).
diff --git a/setup.cfg b/setup.cfg
index 44feb25ff..510e6ddb5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,73 +1,78 @@
-[metadata]
-name = Pillow
-description = Python Imaging Library (Fork)
-long_description = file: README.md
-long_description_content_type = text/markdown
-url = https://python-pillow.org
-author = Alex Clark (PIL Fork Author)
-author_email = aclark@python-pillow.org
-license = HPND
-classifiers =
- Development Status :: 6 - Mature
- License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Programming Language :: Python :: 3.11
- 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
-keywords = Imaging
-project_urls =
- Documentation=https://pillow.readthedocs.io
- Source=https://github.com/python-pillow/Pillow
- Funding=https://tidelift.com/subscription/pkg/pypi-pillow?utm_source=pypi-pillow&utm_medium=pypi
- Release notes=https://pillow.readthedocs.io/en/stable/releasenotes/index.html
- Changelog=https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst
- Twitter=https://twitter.com/PythonPillow
-
-[options]
-packages = PIL
-python_requires = >=3.7
-include_package_data = True
-package_dir =
- = src
-
-[options.extras_require]
-docs =
- furo
- olefile
- sphinx>=2.4
- sphinx-copybutton
- sphinx-issues>=3.0.1
- sphinx-removed-in
- sphinxext-opengraph
-tests =
- check-manifest
- coverage
- defusedxml
- markdown2
- olefile
- packaging
- pyroma
- pytest
- pytest-cov
- pytest-timeout
-
-[flake8]
-extend-ignore = E203
-max-line-length = 88
-
-[isort]
-profile = black
-
-[tool:pytest]
-addopts = -ra --color=yes
-testpaths = Tests
+[metadata]
+name = Pillow
+description = Python Imaging Library (Fork)
+long_description = file: README.md
+long_description_content_type = text/markdown
+url = https://python-pillow.org
+author = Alex Clark (PIL Fork Author)
+author_email = aclark@python-pillow.org
+license = HPND
+classifiers =
+ Development Status :: 6 - Mature
+ License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3 :: Only
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
+ Programming Language :: Python :: 3.11
+ 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
+keywords = Imaging
+project_urls =
+ Documentation=https://pillow.readthedocs.io
+ Source=https://github.com/python-pillow/Pillow
+ Funding=https://tidelift.com/subscription/pkg/pypi-pillow?utm_source=pypi-pillow&utm_medium=pypi
+ Release notes=https://pillow.readthedocs.io/en/stable/releasenotes/index.html
+ Changelog=https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst
+ Twitter=https://twitter.com/PythonPillow
+
+[options]
+packages = PIL
+python_requires = >=3.7
+include_package_data = True
+package_dir =
+ = src
+
+[options.extras_require]
+docs =
+ furo
+ olefile
+ sphinx>=2.4
+ sphinx-copybutton
+ sphinx-issues>=3.0.1
+ sphinx-removed-in
+ sphinxext-opengraph
+tests =
+ check-manifest
+ coverage
+ defusedxml
+ markdown2
+ olefile
+ packaging
+ pyroma
+ pytest
+ pytest-cov
+ pytest-timeout
+
+[flake8]
+extend-ignore = E203
+max-line-length = 88
+
+[isort]
+profile = black
+
+[tool:pytest]
+addopts = -ra --color=yes
+testpaths = Tests
+
+[egg_info]
+tag_build =
+tag_date = 0
+