Skip to content

Commit

Permalink
Updated to version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Feb 4, 2014
1 parent 8b86fb4 commit b2972fb
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,19 @@ def fullsplit(path, result=None):
for file_info in data_files:
file_info[0] = '\\PURELIB\\%s' % file_info[0]

setup(name='django-bakery',
version='0.2.2',
description='A set of helpers for baking your Django site out as flat files',
author='The Los Angeles Times Data Desk',
author_email='datadesk@latimes.com',
url='http://www.github.com/datadesk/django-bakery/',
packages=packages,
install_requires=['six==1.5.2'],
cmdclass = cmdclasses,
data_files=data_files,
)

setup(name='django-bakery',
version='0.3.0',
description='A set of helpers for baking your Django site out as flat files',
author='The Los Angeles Times Data Desk',
author_email='datadesk@latimes.com',
url='http://www.github.com/datadesk/django-bakery/',
packages=packages,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
install_requires=['six==1.5.2'],
cmdclass = cmdclasses,
data_files=data_files,
)

0 comments on commit b2972fb

Please sign in to comment.