-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.37 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
[build-system]
requires = ["setuptools >= 77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ebook-converter"
version = "4.12.0"
requires-python = ">= 3.10"
description = "Convert ebook between different formats"
dependencies = [
"beautifulsoup4>=4.9.3",
"css-parser>=1.0.6",
"filelock>=3.0.12",
"html2text>=2020.1.16",
"html5-parser==0.4.12",
"msgpack>=1.0.0",
"odfpy>=1.4.1",
"pillow>=8.0.1",
"python-dateutil>=2.8.1",
"setuptools>=61.0",
"tinycss>=0.4"
]
readme = "README.rst"
authors = [
{name = "gryf", email = "gryf73@gmail.com"}
]
license = "GPL-3.0-or-later"
classifiers = [
"Environment :: Console",
"Intended Audience :: Other Audience",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
[project.urls]
Repository = "https://github.com/gryf/ebook-converter"
[project.scripts]
ebook-converter = "ebook_converter.main:main"
[tool.setuptools.packages.find]
exclude = ["snap"]
[tool.setuptools.package-data]
"*" = ["*.types", "*.css", "*.html", "*.xhtml", "*.xsl", "*.json"]