-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
42 lines (37 loc) · 1.08 KB
/
pyproject.toml
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
[tool.poetry]
name = "keynote_export"
version = "0.1.5"
description = ""
authors = ["Dan McKinley <[email protected]>"]
repository = "https://github.com/mcfunley/better-keynote-export"
readme = "pypi-readme.md"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Office/Business",
"Topic :: Utilities"
]
[tool.poetry.scripts]
keynote-export = "keynote_export:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
keynote_export = ["resources/*"]
[tool.poetry.dependencies]
python = "^3.12"
jinja2 = "^3.1.4"
appscript = "^1.3.0"
reportlab = "^4.2.5"
click = "^8.1.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"