Merge pull request #7 from apoclyps/docker-support

[ISSUE-3] Adding docker support
This commit is contained in:
2019-07-25 22:06:52 +01:00
committed by Apoclyps
54 changed files with 2106 additions and 1476 deletions

View File

@@ -1,12 +1,13 @@
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', requires=['django-recaptcha', 'django', 'ujson']
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",
requires=["django-recaptcha", "django", "ujson"],
)