-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.33 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
[project]
name = "python-pptx-stubs"
version = "1.0.2.post1"
description = "Type stubs for python-pptx package"
authors = [{ name = "Avishrant Sharma", email = "avishrants@gmail.com" }]
requires-python = ">=3.12"
license = { text = "MIT" }
readme = "README.md"
dependencies = [
"lxml_stubs",
"python-pptx==1.0.2",
]
# This marks it as a PEP 561 type stub package
classifiers = [
"License :: OSI Approved :: MIT License",
"Typing :: Stubs Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
]
[project.urls]
Homepage = "https://github.com/AvishrantsSh/python-pptx-stubs"
Repository = "https://github.com/AvishrantsSh/python-pptx-stubs"
Issues = "https://github.com/AvishrantsSh/python-pptx-stubs/issues"
[dependency-groups]
dev = [
"ipython>=9.6.0",
"lxml-stubs>=0.5.1",
"pyright>=1.1.407",
"python-pptx>=1.0.2",
]
[build-system]
requires = ["uv_build>=0.9.6,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "pptx-stubs"
module-root = ""
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
skip-magic-trailing-comma = false
[tool.ruff.lint]
select = ["E", "F", "W", "Q", "A", "I", "B", "S", "UP", "SIM", "RUF"]
ignore = ["E501", "E743", "RUF012"]