Skip to content

Commit

Permalink
add readme and setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
Diogo Laginha committed Oct 24, 2013
1 parent 11d4bcf commit 244cacd
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
django-key-auth
===============
# django-key-auth

Key based authentication for Django

```python
@key_required
def view(request):
...
```

[See the docs!](docs/usage.md)

## ToDo

- Add Redis support
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rstr
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup, find_packages

setup(
name = 'Django-key-auth',
version = '1.0.0',
author = "Diogo Laginha",
url = 'https://github.com/laginha/django-key-auth',
description = "Key based authentication for Django",
packages = find_packages(where='src'),
package_dir = {'': 'src'},
install_requires = ['rstr'],
extras_require = {},
zip_safe = False,
)

0 comments on commit 244cacd

Please sign in to comment.