27 lines
525 B
TOML
27 lines
525 B
TOML
[project]
|
|
name = "dlibrary"
|
|
version = "0.2"
|
|
description = "Cataloging tool and viewer for downloaded DLSite purchases"
|
|
license = {file = "LICENSE"}
|
|
authors = [{name = "xenofem"}]
|
|
dependencies = [
|
|
"requests",
|
|
"PyMuPDF",
|
|
"pillow",
|
|
"dlsite-async",
|
|
"jinja2",
|
|
"importlib_resources",
|
|
"libsixel-python",
|
|
"rarfile",
|
|
"pyuca",
|
|
]
|
|
|
|
[project.scripts]
|
|
dlibrary = "dlibrary:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["dlibrary"] |