-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (64 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
79 lines (64 loc) · 1.51 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools >= 61", "setuptools_scm[toml] >= 6.4"]
build-backend = "setuptools.build_meta"
[project]
name = "pptx-replace"
description = "python package for replaceing elemnets in pptx files"
readme = "README.md"
authors = [{ name = "John Lyu", email = "paleneutron@outlook.com" }]
keywords = ["pptx", "image", "replace"]
license = { text = "MIT" }
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"python-pptx >= 0.6.21",
"matplotlib",
"openpyxl >= 3.0",
"pandas",
"Jinja2",
"numpy>=1.6",
"python-docx-replace"
]
[project.urls]
"Source Code" = "https://github.com/PaleNeutron/pptx-replace"
[project.optional-dependencies]
alt = ["altair >= 5.0", "vl-convert-python > 1.3"]
dev = [
"mypy",
"ruff==0.3.4"
]
test = ["pytest >= 7.1", "pytest-cov >= 3.0.0"]
doc = [
"sphinx",
"myst-parser",
"nbsphinx",
# "sphinx-material >= 0.0.35",
"pydata-sphinx-theme",
"sphinx-autodoc-typehints >= 1.18.3",
"sphinx-gallery",
# "myst-nb",
]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[tool.isort]
skip_gitignore = true
profile = "black"
[tool.mypy]
strict = true
disallow_untyped_calls = false
warn_unused_ignores = false
[[tool.mypy.overrides]]
module = [
"matplotlib.*",
"altair",
"IPython",
"pptx",
"pptx.*",
"dataframe_image",
"psutil",
"IPython.display",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = ["--strict-config", "--strict-markers"]