-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reddocx"
version = "0.0.3"
description = "Python library for programmatically creating Microsoft Word track-changes (insertions & deletions) via direct OOXML processing."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
authors = [
{ name = "Ayush Kumar" }
]
dependencies = [
"lxml>=6.0.2",
"lxml-stubs>=0.5.1"
]
keywords = ["docx", "word", "track-changes", "ooxml", "lxml"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://github.com/ayush9h/red-docx"
[tool.setuptools]
package-dir = {"" = "src"}