mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
Exlucde example app from installation, bumped to 0.5.8
This commit is contained in:
parent
090f7aa7e8
commit
3da20729b5
3 changed files with 4 additions and 4 deletions
|
|
@ -1,2 +1,2 @@
|
|||
VERSION = (0, 5, 7)
|
||||
VERSION = (0, 5, 8)
|
||||
__version__ = '.'.join(map(str, VERSION))
|
||||
|
|
@ -83,7 +83,7 @@ class FileSystemBackend(BaseCacheBackend):
|
|||
filepath = self._filepath(name)
|
||||
dirname = os.path.dirname(filepath)
|
||||
if not os.path.exists(dirname):
|
||||
os.makedirs(dirname)
|
||||
os.makedirs(dirname)
|
||||
cache_file = open(filepath, 'w')
|
||||
cache_file.write(force_unicode(content).encode('utf-8'))
|
||||
cache_file.close()
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -7,9 +7,9 @@ setup(
|
|||
long_description=open('docs/overview.txt').read(),
|
||||
author='Jannis Leidel',
|
||||
author_email='jannis@leidel.info',
|
||||
url='http://bitbucket.org/jezdez/django-dbtemplates/wiki/Home',
|
||||
url='http://bitbucket.org/jezdez/django-dbtemplates/',
|
||||
download_url='http://bitbucket.org/jezdez/django-dbtemplates/downloads/',
|
||||
packages=find_packages(),
|
||||
packages=find_packages(exclude=['example']),
|
||||
zip_safe=False,
|
||||
package_data = {
|
||||
'dbtemplates': [
|
||||
|
|
|
|||
Loading…
Reference in a new issue