diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..d780a94 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +#!/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',], +)