-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pptx-shapes"
authors = [
{name = "Andrew Perminov", email = "dronperminov@gmail.com"}
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"lxml>=3.1.0"
]
description = "Python library for adding basic geometric shapes directly to PowerPoint (.pptx) slides by editing the XML structure."
keywords = ["powerpoint", "pptx", "xml", "shape", "geometry", "line", "rectangle", "polygon", "ellipse", "text"]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
version="0.3.1"
[project.urls]
Homepage = "https://github.com/dronperminov/pptx-shapes"
Repository = "https://github.com/dronperminov/pptx-shapes"
Documentation = "https://pptx-shapes.readthedocs.io"
Issues = "https://github.com/dronperminov/pptx-shapes/issues"
Changelog = "https://github.com/dronperminov/pptx-shapes/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["pptx_shapes"]