Skip to content

Commit

Permalink
Version 0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsensible committed Mar 8, 2013
1 parent 477815c commit d347373
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion publish/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (0, 3, 8)
VERSION = (0, 3, 9)
__version__ = '.'.join(map(str, VERSION))
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
from setuptools import setup, find_packages


version=__import__('publish').__version__

setup(
name='django-publish',
version=__import__('publish').__version__,
version=version,
description='Handy mixin/abstract class for providing a "publisher workflow" to arbitrary Django models.',
long_description=open('README.rst').read(),
author='John Montgomery',
author_email='[email protected]',
url='http://github.com/johnsensible/django-publish',
download_url='http://github.com/johnsensible/django-publish/downloads',
download_url='https://github.com/johnsensible/django-publish/archive/v%s.zip#egg=django-publish-%s' % (version, version),
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
Expand Down

0 comments on commit d347373

Please sign in to comment.