From 5628c31bb33538948cbcfd547e0240c3744fbb79 Mon Sep 17 00:00:00 2001 From: homm Date: Tue, 4 Oct 2016 13:05:41 +0300 Subject: [PATCH] SIMD. pypi readme, update setup --- PyPI.rst | 6 ++++++ setup.cfg | 9 ++++----- setup.py | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 PyPI.rst diff --git a/PyPI.rst b/PyPI.rst new file mode 100644 index 000000000..e63270f75 --- /dev/null +++ b/PyPI.rst @@ -0,0 +1,6 @@ + +`Pillow-SIMD repo and readme `_ + +`Pillow-SIMD changelog `_ + +`Pillow documentation `_ diff --git a/setup.cfg b/setup.cfg index c3b5a3197..c0e17733a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,8 @@ [metadata] -name = Pillow +name = Pillow-SIMD description = Python Imaging Library (Fork) -long_description = file: README.md -long_description_content_type = text/markdown -url = https://python-pillow.org +long_description = file: PyPI.rst +url = https://github.com/uploadcare/pillow-simd author = Alex Clark (PIL Fork Author) author_email = aclark@python-pillow.org license = HPND @@ -26,7 +25,7 @@ classifiers = keywords = Imaging project_urls = Documentation=https://pillow.readthedocs.io - Source=https://github.com/python-pillow/Pillow + Source=https://github.com/uploadcare/pillow-simd 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 diff --git a/setup.py b/setup.py index 23d91a5f2..7bb15c91b 100755 --- a/setup.py +++ b/setup.py @@ -976,7 +976,7 @@ for src_file in _IMAGING: for src_file in _LIB_IMAGING: files.append(os.path.join("src/libImaging", src_file + ".c")) ext_modules = [ - Extension("PIL._imaging", files), + Extension("PIL._imaging", files, extra_compile_args=["-msse4"]), Extension("PIL._imagingft", ["src/_imagingft.c"]), Extension("PIL._imagingcms", ["src/_imagingcms.c"]), Extension("PIL._webp", ["src/_webp.c"]),