Exlucde example app from installation, bumped to 0.5.8

This commit is contained in:
Jannis Leidel 2009-05-26 19:54:27 +02:00
parent 090f7aa7e8
commit 3da20729b5
3 changed files with 4 additions and 4 deletions

View file

@ -1,2 +1,2 @@
VERSION = (0, 5, 7)
VERSION = (0, 5, 8)
__version__ = '.'.join(map(str, VERSION))

View file

@ -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()

View file

@ -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': [