-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 981 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "html2docxconverter"
version = "0.1.8"
description = "Конвертирует HTML в DOCX с сохранением стилей: списков, таблиц, шрифтов, цветов и т.д."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "pew" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["html", "docx", "word", "convert", "parser"]
requires-python = ">=3.11"
dependencies = [
"python-docx>=1.2.0,<1.3",
"beautifulsoup4>=4.14.3",
"soupsieve>=2.8.1",
"requests>=2.32.5",
"pillow>=12.1.0",
]
[project.urls]
Homepage = "https://github.com/Dnnbg123/html2docxconverter"
Repository = "https://github.com/Dnnbg123/html2docxconverter"
Bug_Tracker = "https://github.com/Dnnbg123/html2docxconverter/issues"