-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 734 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 734 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='djalf',
version='0.6.0',
description="OAuth Client",
long_description='Django cache layer to alf, a OAuth Client based on requests.Session with seamless support for Client Credentials Flow',
keywords='oauth client client_credentials requests django',
author=u'Globo.com',
author_email='j3@corp.globo.com',
url='https://github.com/globocom/djalf',
license='Proprietary',
classifiers=['Intended Audience :: Developers'],
packages=find_packages(
exclude=(
'tests',
),
),
include_package_data=True,
install_requires=[
'alf>=0.6',
'Django>=1.4.0'
],
)