Skip to content

Commit

Permalink
[v2.0.1] Minor Updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhamodi committed Jan 2, 2017
1 parent 9e3e5e5 commit 44befad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

setup(
name='facebook-online-friend-tracker',
version='2.0.0',
version='2.0.1',
description='This tool tracks the number of online friends a user has on Facebook at any given time.',
long_description=open('README.rst').read(),
url='https://github.com/bhamodi/facebook-online-friend-tracker',
author='Baraa Hamodi',
author_email='[email protected]',
author_email='bhamodi@edu.uwaterloo.ca',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -26,7 +26,7 @@
packages=find_packages(),
install_requires=[
'chromedriver_installer>=0.0.4',
'selenium>=2.49.1',
'selenium>=3.0.2',
],
entry_points={
'console_scripts': [
Expand Down
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def main():

# Change default timeout and window size.
driver.implicitly_wait(120)
driver.set_window_size(700, 700)
driver.set_window_size(700, 500)

# Go to www.facebook.com and log in using the provided credentials.
print('Logging into Facebook...')
Expand Down Expand Up @@ -107,4 +107,4 @@ def main():
iteration += 1

# Close Chrome WebDriver.
driver.close()
driver.quit()

0 comments on commit 44befad

Please sign in to comment.