forked from etoccalino/django-rest-framework-httpsignature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 967 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
31
32
from setuptools import setup
setup(
name='djangorestframework-httpsignature',
version='1.0.0',
url='https://github.com/etoccalino/django-rest-framework-httpsignature',
license='LICENSE.txt',
description='HTTP Signature support for Django REST framework',
long_description=open('README.rst').read(),
install_requires=[
'Django>=1.6.2',
'djangorestframework>=2.3.14',
'httpsig',
],
author='Elvio Toccalino',
author_email='me@etoccalino.com',
packages=['rest_framework_httpsignature'],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
]
)