Skip to content
This repository was archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed May 9, 2013
1 parent f637397 commit 8990a3d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Run this command to install django-nopassword
pip install django-nopassword

### Requirements
Django >= 1.4 (1.5 is supported)
Django >= 1.4 (1.5 custom user is supported)

South is not required but it is supported.

Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## Changelog
### 0.3
* Support inactive users
* Set `supports_inactive_user` to avoid warnings on 1.4

### 0.2
* Support for custom user in Django 1.5
* Add `LOGIN_CODE_TIMEOUT` setting
Expand Down
24 changes: 17 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
import os
from setuptools import setup, find_packages

os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'

setup(
name = "django-nopassword",
version = '0.2',
name="django-nopassword",
version='0.3',
url='http://github.com/relekang/django-nopassword',
author = 'Rolf Erik Lekang',
author_email = '[email protected]',
description = 'Authentication backend for django that uses email verification instead of passwords',
packages = find_packages(exclude='tests'),
author='Rolf Erik Lekang',
author_email='[email protected]',
description='Authentication backend for django that uses email verification instead of passwords',
long_description=open('README.md').read(),
packages=find_packages(exclude='tests'),
tests_require=[
'django>=1.3',
'django>=1.4',
],
test_suite='runtests.runtests',
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Natural Language :: English",
]
)

0 comments on commit 8990a3d

Please sign in to comment.