SIMD. pypi readme, update setup

This commit is contained in:
homm 2016-10-04 13:05:41 +03:00 committed by Alexander Karpinsky
parent 033755777a
commit 5628c31bb3
3 changed files with 11 additions and 6 deletions

6
PyPI.rst Normal file
View File

@ -0,0 +1,6 @@
`Pillow-SIMD repo and readme <https://github.com/uploadcare/pillow-simd>`_
`Pillow-SIMD changelog <https://github.com/uploadcare/pillow-simd/blob/simd/3.4.x/CHANGES.SIMD.rst>`_
`Pillow documentation <https://pillow.readthedocs.io/>`_

View File

@ -1,9 +1,8 @@
[metadata] [metadata]
name = Pillow name = Pillow-SIMD
description = Python Imaging Library (Fork) description = Python Imaging Library (Fork)
long_description = file: README.md long_description = file: PyPI.rst
long_description_content_type = text/markdown url = https://github.com/uploadcare/pillow-simd
url = https://python-pillow.org
author = Alex Clark (PIL Fork Author) author = Alex Clark (PIL Fork Author)
author_email = aclark@python-pillow.org author_email = aclark@python-pillow.org
license = HPND license = HPND
@ -26,7 +25,7 @@ classifiers =
keywords = Imaging keywords = Imaging
project_urls = project_urls =
Documentation=https://pillow.readthedocs.io 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 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 Release notes=https://pillow.readthedocs.io/en/stable/releasenotes/index.html
Changelog=https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst Changelog=https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst

View File

@ -976,7 +976,7 @@ for src_file in _IMAGING:
for src_file in _LIB_IMAGING: for src_file in _LIB_IMAGING:
files.append(os.path.join("src/libImaging", src_file + ".c")) files.append(os.path.join("src/libImaging", src_file + ".c"))
ext_modules = [ ext_modules = [
Extension("PIL._imaging", files), Extension("PIL._imaging", files, extra_compile_args=["-msse4"]),
Extension("PIL._imagingft", ["src/_imagingft.c"]), Extension("PIL._imagingft", ["src/_imagingft.c"]),
Extension("PIL._imagingcms", ["src/_imagingcms.c"]), Extension("PIL._imagingcms", ["src/_imagingcms.c"]),
Extension("PIL._webp", ["src/_webp.c"]), Extension("PIL._webp", ["src/_webp.c"]),