|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "python-pptx" |
| 7 | +authors = [{name = "Steve Canny", email = "stcanny@gmail.com"}] |
| 8 | +classifiers = [ |
| 9 | + "Development Status :: 5 - Production/Stable", |
| 10 | + "Environment :: Console", |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "License :: OSI Approved :: MIT License", |
| 13 | + "Operating System :: OS Independent", |
| 14 | + "Programming Language :: Python", |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | + "Programming Language :: Python :: 3.8", |
| 17 | + "Programming Language :: Python :: 3.9", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | + "Programming Language :: Python :: 3.11", |
| 20 | + "Programming Language :: Python :: 3.12", |
| 21 | + "Topic :: Office/Business :: Office Suites", |
| 22 | + "Topic :: Software Development :: Libraries", |
| 23 | +] |
| 24 | +dependencies = [ |
| 25 | + "Pillow>=3.3.2", |
| 26 | + "XlsxWriter>=0.5.7", |
| 27 | + "lxml>=3.1.0", |
| 28 | + "typing_extensions>=4.9.0", |
| 29 | +] |
| 30 | +description = "Create, read, and update PowerPoint 2007+ (.pptx) files." |
| 31 | +dynamic = ["version"] |
| 32 | +keywords = ["powerpoint", "ppt", "pptx", "openxml", "office"] |
| 33 | +license = { text = "MIT" } |
| 34 | +readme = "README.rst" |
| 35 | +requires-python = ">=3.8" |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +Changelog = "https://github.com/scanny/python-pptx/blob/master/HISTORY.rst" |
| 39 | +Documentation = "https://python-pptx.readthedocs.io/en/latest/" |
| 40 | +Homepage = "https://github.com/scanny/python-pptx" |
| 41 | +Repository = "https://github.com/scanny/python-pptx" |
| 42 | + |
1 | 43 | [tool.black] |
2 | 44 | line-length = 100 |
3 | 45 |
|
@@ -98,3 +140,6 @@ ignore = [ |
98 | 140 |
|
99 | 141 | [tool.ruff.lint.isort] |
100 | 142 | known-first-party = ["pptx"] |
| 143 | + |
| 144 | +[tool.setuptools.dynamic] |
| 145 | +version = {attr = "pptx.__version__"} |
0 commit comments