mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 14:17:19 +00:00
13 lines
388 B
Python
13 lines
388 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name="cbwebreader",
|
|
version="",
|
|
packages=["comic", "comic.migrations", "cbreader", "comic_auth", "comic_auth.migrations"],
|
|
url="https://github.com/ajurna/cbwebreader",
|
|
license="http://creativecommons.org/licenses/by-sa/4.0/",
|
|
author="Ajurna",
|
|
author_email="ajurna@gmail.com",
|
|
description="Comic Book Web Reader",
|
|
)
|