forked from msuozzo/Lector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
selenium==2.47.0 | ||
wsgiref==0.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
) |