Repository URL to install this package:
|
Version:
1.0 ▾
|
rest-framework-hmac
/
setup.py
|
|---|
# -*- coding: utf-8 -*-
from setuptools import setup
import os
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='rest-framework-hmac',
version='1.0',
author='Robert Kolner',
author_email='robert@zeppelin.no',
packages=['rest_framework_hmac', ],
include_package_data=True,
url='https://github.com/zeppelin-no/rest_framework_hmac',
license='BSD licence, see LICENCE.txt',
description='Signature authentication module for Django Rest Framework',
long_description=open('README.md').read(),
zip_safe=True,
install_requires=[
'Django>=1.8',
'djangorestframework>=3.1.3',
],
)