Skip to content

Commit

Permalink
Released 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouke committed Nov 22, 2013
1 parent 2fabbca commit 6789d7d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include LICENSE.txt
include README.rst
prune user_sessions/locale
recursive-include user_sessions/locale *
recursive-include user_sessions/templates *
16 changes: 7 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
from distutils.core import setup
from setuptools import find_packages
from setuptools import setup, find_packages

setup(
name='django-user-sessions',
version='0.1.1',
version='0.1.2',
description='Django sessions with a foreign key to the user',
long_description=open('README.rst').read(),
author='Bouke Haarsma',
author_email='bouke@webatoom.nl',
packages=find_packages(exclude=('example', 'tests',)),
package_data={
'user_sessions': ['templates/user_sessions/*.html'],
},
url='http://github.com/Bouke/django-user-sessions',
description='Django sessions with a foreign key to the user',
download_url='https://pypi.python.org/pypi/django-user-sessions',
license='MIT',
long_description=open('README.rst').read(),
packages=find_packages(exclude=('example', 'tests',)),
install_requires=['Django>=1.4'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand Down

0 comments on commit 6789d7d

Please sign in to comment.