-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 871 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
37
38
39
40
41
42
[tool.poetry]
name = "powerpoint-autogen"
version = "0.1.0"
description = "Auto-generation of microsoft powerpoint presentations"
authors = ["Ed Powers <ed.a.powers@gmail.com>"]
readme = "README.md"
packages = [
{ include = "pptgen", from = "." },
]
[tool.poetry.dependencies]
python = "^3.11,<3.13"
pandas = "^2.2.2"
pydantic = "^2.8.2"
python-pptx = "^1.0.0"
python-dotenv = "^1.0.1"
matplotlib = "^3.9.0"
[tool.poetry.group.dev.dependencies]
pip = "^24.2"
pykernel = "^0.1.6"
ipykernel = "^6.29.5"
jupyter = "^1.0.0"
flake8 = "^7.1.1"
black = "^24.8.0"
mypy = "^1.11.1"
pre-commit = "^3.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = false
ensure_newline_before_comments = true