dlibrary/pyproject.toml

24 lines
482 B
TOML
Raw Permalink Normal View History

2024-01-22 22:06:04 -05:00
[project]
name = "dlibrary"
2024-02-07 22:33:41 -05:00
version = "0.2"
2024-01-23 21:06:56 -05:00
description = "Cataloging tool and viewer for downloaded DLSite purchases"
license = {file = "LICENSE"}
authors = [{name = "xenofem"}]
2024-01-22 22:06:04 -05:00
dependencies = [
"requests",
"PyMuPDF",
"pillow",
2024-01-22 22:06:04 -05:00
"dlsite-async",
"jinja2",
"importlib_resources",
2024-03-12 04:55:17 -04:00
"libsixel-python",
"rarfile",
"pyuca",
2024-01-22 22:06:04 -05:00
]
[project.scripts]
dlibrary = "dlibrary:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"