Included the default serviceworker, updated the manifest, Add the default offline page, updated the unit test, Redme

This commit is contained in:
Silvio Leite
2018-11-30 20:33:20 -02:00
parent 73151d2585
commit 79c6963219
25 changed files with 252 additions and 33 deletions

View File

@@ -10,16 +10,21 @@ try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
except RuntimeError:
long_description = short_description
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
install_requirements = [
"django>=2",
]
setup(
name='django-pwa',
version='1.0.0',
version='1.0.1',
packages=find_packages(),
install_requires=install_requirements,
include_package_data=True,
license='MIT License',
description=short_description,
@@ -30,7 +35,8 @@ setup(
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',