Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Release History
---------------

1.1.0 (2026-05-01)
++++++++++++++++++

- Fork of python-pptx 1.0.2 published as ``python-pptx-extended``.
- feature: full shadow effect API on ``ShadowFormat``
- feature: bullet and numbered list paragraph formatting
- feature: per-edge table cell borders
- feature: ``cap_style`` and ``join_style`` properties on ``LineFormat``
- feature: line-end shape types

1.0.2 (2024-08-07)
++++++++++++++++++

Expand Down
23 changes: 23 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Fork notice
-----------

This distribution, ``python-pptx-extended``, is a fork of
`scanny/python-pptx`_ at upstream version 1.0.2. The import name is unchanged
(``import pptx``), so existing user code continues to work. The fork adds the
following features on top of upstream:

- Full shadow effect API on ``ShadowFormat`` (outer/inner/preset shadows).
- Bullet and numbered list formatting on paragraphs.
- Per-edge border styling for table cells.
- ``cap_style`` and ``join_style`` properties on ``LineFormat``.
- Line-end shape types (arrow / triangle / oval / etc.).

Because the import package name (``pptx``) is shared with the upstream
distribution, ``python-pptx`` and ``python-pptx-extended`` cannot be installed
into the same environment — install one or the other.

.. _`scanny/python-pptx`: https://github.com/scanny/python-pptx

About python-pptx
-----------------

*python-pptx* is a Python library for creating, reading, and updating PowerPoint (.pptx)
files.

Expand Down
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"

[project]
name = "python-pptx"
name = "python-pptx-extended"
authors = [{name = "Steve Canny", email = "stcanny@gmail.com"}]
maintainers = [{name = "Matthew Horoszowski", email = "matthew.horoszowski@gmail.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -27,18 +28,19 @@ dependencies = [
"lxml>=3.1.0",
"typing_extensions>=4.9.0",
]
description = "Create, read, and update PowerPoint 2007+ (.pptx) files."
description = "Fork of python-pptx with additional formatting features (shadows, bullets, table borders, line caps/joins, line end types)."
dynamic = ["version"]
keywords = ["powerpoint", "ppt", "pptx", "openxml", "office"]
license = { text = "MIT" }
readme = "README.rst"
requires-python = ">=3.8"

[project.urls]
Changelog = "https://github.com/scanny/python-pptx/blob/master/HISTORY.rst"
Changelog = "https://github.com/MHoroszowski/python-pptx/blob/master/HISTORY.rst"
Documentation = "https://python-pptx.readthedocs.io/en/latest/"
Homepage = "https://github.com/scanny/python-pptx"
Repository = "https://github.com/scanny/python-pptx"
Homepage = "https://github.com/MHoroszowski/python-pptx"
Repository = "https://github.com/MHoroszowski/python-pptx"
Upstream = "https://github.com/scanny/python-pptx"

[tool.black]
line-length = 100
Expand Down
2 changes: 1 addition & 1 deletion src/pptx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
if TYPE_CHECKING:
from pptx.opc.package import Part

__version__ = "1.0.2"
__version__ = "1.1.0"

sys.modules["pptx.exceptions"] = exceptions
del sys
Expand Down
Loading