-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "keynote-parser"
dynamic = ["version"]
description = "A tool for manipulating Apple Keynote presentation files."
readme = "README.md"
license = { text = "MIT License" }
authors = [{ name = "Peter Sobot", email = "github@petersobot.com" }]
requires-python = ">=3.9"
keywords = ["keynote", "macOS", "apple", "presentation", "powerpoint"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"protobuf>=3.13.0",
"tqdm>=4.14.0",
"python-snappy>=0.5.3",
"PyYAML>=5.3.1",
"Pillow>=7.1.0",
"future>=0.17.1",
"colorama>=0.4.3",
]
[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage"]
[project.scripts]
keynote-parser = "keynote_parser.command_line:main"
[project.urls]
"Bug Reports" = "https://github.com/psobot/keynote-parser/issues"
"Source" = "https://github.com/psobot/keynote-parser/"
[tool.setuptools.dynamic]
version = { attr = "keynote_parser.__version__" }
[tool.setuptools.packages.find]
exclude = ["contrib*", "docs*", "tests*", "protos*"]
[tool.coverage.run]
omit = ["keynote_parser/versions/*"]
[tool.pytest.ini_options]
addopts = "--cov=keynote_parser"