diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a66c47a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.egg-info \ No newline at end of file diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 14cc54b..7e9f75d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,10 @@ -======================= Django Voting Changelog -======================= \ No newline at end of file +======================= + +0.2 +--- + +* Django 1.4 compatibility (timezone support) +* Added a ``time_stamp`` field to ``Vote`` model +* Added South migrations. +* \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt index 169aee3..d55a81a 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,6 +2,7 @@ django-voting ------------- Copyright (c) 2007, Jonathan Buchanan +Copyright (c) 2012, Jannis Leidel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/setup.py b/setup.py index 28ac03a..279e0c6 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,4 @@ from distutils.core import setup -from distutils.command.install import INSTALL_SCHEMES - -# Tell distutils to put the data_files in platform-specific installation -# locations. See here for an explanation: -# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb -for scheme in INSTALL_SCHEMES.values(): - scheme['data'] = scheme['purelib'] # Dynamically calculate the version based on tagging.VERSION. version_tuple = __import__('voting').VERSION @@ -15,19 +8,28 @@ version = "%d.%d" % version_tuple[:2] setup( - name = 'django-voting', - version = version, - description = 'Generic voting application for Django', - author = 'Jonathan Buchanan', - author_email = 'jonathan.buchanan@gmail.com', - url = 'http://code.google.com/p/django-voting/', - packages = ['voting', 'voting.templatetags', 'voting.migrations', 'voting.tests'], - classifiers = ['Development Status :: 4 - Beta', - 'Environment :: Web Environment', - 'Framework :: Django', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Topic :: Utilities'], -) \ No newline at end of file + name='django-voting', + version=version, + description='Generic voting application for Django', + author='Jonathan Buchanan', + author_email='jonathan.buchanan@gmail.com', + maintainer='Jannis Leidel', + maintainer_email='jannis@leidel.info', + url='http://github.com/jezdez/django-voting/', + packages=[ + 'voting', + 'voting.migrations', + 'voting.templatetags', + 'voting.tests', + ], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Utilities', + ], +) diff --git a/voting/__init__.py b/voting/__init__.py index 449f64a..6b515fe 100644 --- a/voting/__init__.py +++ b/voting/__init__.py @@ -1 +1 @@ -VERSION = (0, 1, None) \ No newline at end of file +VERSION = (0, 2, None)