[project] name = "scribble_to_epub" dependencies = [ 'beautifulsoup4~=4.13.4', 'requests', '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.0" license-files = [ "LICENSE" ] [project.scripts] scribble-to-epub = "scribble_to_epub.__main__:cli" [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