scribble_to_epub/pyproject.toml
2025-06-11 15:39:53 +02:00

45 lines
1.0 KiB
TOML

[project]
name = "scribble_to_epub"
dependencies = [
'beautifulsoup4~=4.13.4',
'easy-requests~=0.0.0',
'EbookLib~=0.19',
'arrow~=1.3.0',
'ftfy~=6.3.1',
]
authors = []
description = "This scrapes books from https://www.scribblehub.com/ and creates epub from them"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
version = "0.0.1"
license-files = [
"LICENSE"
]
[project.scripts]
scribble-to-epub = "scribble_to_epub.__main__:cli"
[project.urls]
Homepage = "https://gitea.elara.ws/Hazel/scribble_to_epub"
Issues = "https://gitea.elara.ws/Hazel/scribble_to_epub/issues"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.build]
directory = "dist"
[tool.hatch.build.targets.sdist]
include = ["scribble_to_epub/*.py", "scribble_to_epub/*.css"]
[tool.hatch.build.targets.wheel]
packages = ["scribble_to_epub"]
[tool.hatch.metadata]
allow-direct-references = true