Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
rest-framework-hmac / setup.py
Size: Mime:
# -*- 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',
    ],
)