added setup.py and added some requirments

This commit is contained in:
2015-07-24 14:49:24 +01:00
parent 5a9a464cf1
commit cb20821e23
5 changed files with 28 additions and 1 deletions

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
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']
)