-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 898 Bytes
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
[tool.poetry]
name = "gslides-api"
version = "0.3.6"
description = "A Python library for working with Google Slides API using Pydantic domain objects"
authors = ["motley.ai <info@motley.ai>"]
license = "MIT"
readme = "README.md"
packages = [{include = "gslides_api"}]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.11.7"
google-auth = "^2.0.0"
google-api-python-client = "^2.169.0"
google-auth-oauthlib = "^1.2.2"
marko = "^2.1.4"
protobuf = "^6.31.1"
requests = "^2.32.4"
typeguard = "^4.4.4"
pillow = {version = "^10.0.0", optional = true}
pandas = {version = "^2.0.0", optional = true}
mcp = {version = "^1.0.0"}
[tool.poetry.extras]
image = ["pillow"]
tables = ["pandas"]
[tool.poetry.scripts]
gslides-mcp = "gslides_api.mcp.server:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"