23 lines
678 B
Python
23 lines
678 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="cbz-volume-combiner",
|
|
version="0.2.2",
|
|
packages=find_packages(),
|
|
scripts=['bin/cbz-volume-combiner'],
|
|
install_requires=[
|
|
'tqdm',
|
|
],
|
|
author="b3nw",
|
|
author_email="b3nw@duck.com",
|
|
description="A tool to combine individual CBZ chapters into volume CBZ files",
|
|
keywords="cbz, manga, comics",
|
|
url="https://github.com/b3nw/cbz-volume-combiner",
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Utilities",
|
|
],
|
|
) |