forked from python-openxml/python-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1.02 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "office-word"
authors = [{ name = "thep0y", email = "thepoy@163.com" }]
description = "Create and update Microsoft Word .docx files."
readme = "README.rst"
requires-python = ">=3.6"
license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3"]
keywords = ["docx", "office", "openxml", "word"]
dependencies = ["lxml>=4.9.2"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/thep0y/python-docx"
repository = "https://github.com/thep0y/python-docx"
[project.optional-dependencies]
[tool.setuptools]
packages = ["docx"]
[tool.setuptools.package-data]
docx = [
"py.typed",
"api.pyi",
"document.pyi",
"templates/*.xml",
"templates/*.docx",
]
[tool.setuptools_scm]
write_to = "docx/version.py"
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.pyright]
pythonVersion = '3.11'
venv = 'dev'