-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 1020 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
from setuptools import setup
def read(fname1, fname2):
if os.path.exists(fname1):
fname = fname1
else:
fname = fname2
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-fost-authn",
version = "0.3.8",
author = "Kirit Saelensminde",
author_email = "kirit@felspar.com",
url = 'https://github.com/Felspar/django-fost-authn',
description = ("HTTP SHA1 HMAC authentication backend for Django"),
license = "Boost Software License - Version 1.0 - August 17th, 2003",
keywords = "django authentication hmac sha1 fost",
long_description = read('README','README.markdown'),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved",
],
packages=['fost_authn', 'fost_authn_debug'],
)