Skip to content

Commit

Permalink
Added install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
msuozzo committed Nov 11, 2015
1 parent 44ac2d0 commit df297f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
selenium==2.47.0
wsgiref==0.1.2
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
#!/usr/bin/env python #pylint: disable=missing-docstring

import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

import kindle_api

open_ = lambda fname: open(os.path.join(os.path.dirname(__file__), fname))

with open_('requirements.txt') as f:
requires = f.read().splitlines()

setup(name='Kindle API',
version=kindle_api.__version__,
description='Interface for Amazon\'s Kindle Data',
author='Matthew Suozzo',
author_email='[email protected]',
url='https://github.com/msuozzo/kindle_api',
packages=['kindle_api'],
install_requires=requires,
license='MIT'
)

0 comments on commit df297f5

Please sign in to comment.