This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* tail/head working * check if votes is null.
- Loading branch information
1 parent
c580bbd
commit e5f2dd8
Showing
9 changed files
with
157 additions
and
25 deletions.
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 |
---|---|---|
|
@@ -5,5 +5,4 @@ | |
.pytest_cache/ | ||
build/ | ||
dist/ | ||
venv/ | ||
setup.py | ||
venv/ |
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ python: | |
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
- "3.7-dev" | ||
# - "3.7-dev" | ||
install: | ||
- pip install tox-travis | ||
script: | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import io # for python2 | ||
from os import path | ||
from setuptools import setup | ||
|
||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the relevant file | ||
with io.open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='rfd', | ||
version='0.0.5', | ||
packages=['rfd'], | ||
keywords='cli redflagdeals', | ||
install_requires=[ | ||
'PyYAML>=3.11', | ||
'beautifulsoup4>=4.6.0', | ||
'click>=6.7', | ||
'colorama>=0.3.9', | ||
'pytest>=3.4.2', | ||
'requests>=2.18.4' | ||
], | ||
url='https://github.com/davegallant/rfd_cli', | ||
license='Apache License, Version 2.0', | ||
author='Dave Gallant', | ||
author_email='davegallant@gmail.com', | ||
description='CLI for RedFlagDeals.com', | ||
long_description=long_description, | ||
entry_points={ | ||
'console_scripts': [ | ||
'rfd = rfd.rfd_cli:cli', | ||
], | ||
}, | ||
) |
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,5 +1,10 @@ | ||
[tox] | ||
envlist = py{27,34,35,36,37} | ||
envlist = py{27, | ||
34, | ||
35, | ||
36, | ||
#37, | ||
} | ||
|
||
[testenv] | ||
commands = | ||
|