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",
|
2024-02-06 23:01:59 -05:00
|
|
|
"pillow",
|
2024-01-22 22:06:04 -05:00
|
|
|
"dlsite-async",
|
|
|
|
"jinja2",
|
|
|
|
"importlib_resources",
|
2024-03-12 04:55:17 -04:00
|
|
|
"libsixel-python",
|
2024-03-15 16:00:37 -04:00
|
|
|
"rarfile",
|
2024-04-02 14:24:42 -04:00
|
|
|
"pyuca",
|
2024-01-22 22:06:04 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
dlibrary = "dlibrary:main"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
2024-07-18 11:23:24 -04:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["dlibrary"]
|