mirror of
https://github.com/nikdoof/django-testauth.git
synced 2025-12-13 04:42:15 +00:00
14 lines
420 B
Python
Executable File
14 lines
420 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name = "django-testauth",
|
|
version = '0.1',
|
|
description = "Django library/application for authenticating against TEST services",
|
|
author = "Andrew Williams",
|
|
author_email = "matalok@pleaseignore.com",
|
|
url = "http://dev.pleaseignore.com/projects/django-dreddit",
|
|
keywords = "eve api eveonline",
|
|
packages = ['django-testauth',],
|
|
)
|