-
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.
Merge pull request #4 from MarekSuchanek/task03
Task03
- Loading branch information
Showing
9 changed files
with
136 additions
and
32 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include LICENSE | ||
include README.md | ||
include config/auth.example.cfg |
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 @@ | ||
README.md |
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# TwitterWall | ||
# TwitterWall tested environment | ||
# pip install -r requirements.txt | ||
#================================ | ||
click >= 6.6 | ||
requests >= 2.10.0 | ||
flask >= 0.10.0 | ||
click==6.6 | ||
Flask==0.11.1 | ||
itsdangerous==0.24 | ||
Jinja2==2.8 | ||
MarkupSafe==0.23 | ||
requests==2.11.1 | ||
Werkzeug==0.11.11 |
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,52 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('README.md') as f: | ||
long_description = ''.join(f.readlines()) | ||
|
||
setup( | ||
name='twitterwall', | ||
version='0.3', | ||
keywords='twitter feed cli web tweet wall', | ||
description='Simple CLI & WEB based Twitter tweets feed', | ||
long_description=long_description, | ||
author='Marek Suchánek', | ||
author_email='[email protected]', | ||
license='MIT', | ||
url='https://github.com/MarekSuchanek/PYT-TwitterWall', | ||
zip_safe=False, # http://flask.pocoo.org/docs/0.11/patterns/distribute/ | ||
packages=find_packages(), | ||
package_data={ | ||
'twitterwall': [ | ||
'static/*.*', | ||
'static/fonts/*.*', | ||
'static/images/*.*', | ||
'templates/*.html' | ||
] | ||
}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'twitterwall = twitterwall.cli:twitter_wall', | ||
], | ||
}, | ||
install_requires=[ | ||
'Flask>=0.10.0', | ||
'Jinja2>=2.6', | ||
'click>=6.6', | ||
'requests>=2.10.0' | ||
], | ||
classifiers=[ | ||
'Environment :: Console', | ||
'Environment :: Web Environment', | ||
'Framework :: Flask', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.5', | ||
'Topic :: Communications', | ||
'Topic :: Internet', | ||
'Topic :: Sociology' | ||
], | ||
) |
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,4 @@ | ||
from .common import Tweet, TwitterConnection | ||
from .cli import CLIColorfulWall, CLIWall, TweetReader | ||
|
||
__all__ = ['Tweet','TweetReader', 'TwitterConnection', 'CLIWall', 'CLIColorfulWall'] |
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,3 +1,3 @@ | ||
from cli import twitter_wall | ||
from .cli import twitter_wall | ||
|
||
twitter_wall() |
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