Skip to content

Commit

Permalink
Updated license, changelog and version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Jul 26, 2012
1 parent c853ab5 commit 9e2d62a
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 26 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.egg-info
11 changes: 9 additions & 2 deletions CHANGELOG.txt
@@ -1,3 +1,10 @@
=======================
Django Voting Changelog
=======================
=======================

0.2
---

* Django 1.4 compatibility (timezone support)
* Added a ``time_stamp`` field to ``Vote`` model
* Added South migrations.
*
1 change: 1 addition & 0 deletions LICENSE.txt
Expand Up @@ -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
Expand Down
48 changes: 25 additions & 23 deletions 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
Expand All @@ -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'],
)
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',
],
)
2 changes: 1 addition & 1 deletion voting/__init__.py
@@ -1 +1 @@
VERSION = (0, 1, None)
VERSION = (0, 2, None)

0 comments on commit 9e2d62a

Please sign in to comment.