Skip to content

Commit

Permalink
Fix pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Sep 2, 2015
1 parent d37822e commit 5ed1bb3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
from __future__ import absolute_import
from distutils.core import setup

from duo_client import __version__
import os.path

requirements_filename = os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'requirements.txt')

with open(requirements_filename) as fd:
install_requires = [i.strip() for i in fd.readlines()]

setup(
name='duo_client',
version=__version__,
version='3.0',
description='Reference client for Duo Security APIs',
author='Duo Security, Inc.',
author_email='support@duosecurity.com',
Expand All @@ -17,4 +23,5 @@
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
],
install_requires=install_requires,
)

0 comments on commit 5ed1bb3

Please sign in to comment.