-
-
Notifications
You must be signed in to change notification settings - Fork 151
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
1 parent
b6d5b56
commit a390edb
Showing
2 changed files
with
15 additions
and
13 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 |
---|---|---|
|
@@ -4,13 +4,13 @@ | |
setup( | ||
name='tinderbotz', # How you named your folder | ||
packages=['tinderbotz'], # Chose the same as "name" | ||
version='1.5', # Start with a small number and increase it with every change you make | ||
version='1.6', # Start with a small number and increase it with every change you make | ||
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository | ||
description='Tinder automated bot and data scraper', # Give a short description about your library | ||
author='Frederik Mees', # Type in your name | ||
author_email='[email protected]', # Type in your E-Mail | ||
url='https://github.com/frederikme/TinderBot', # Provide either the link to your github or to your website | ||
download_url='https://github.com/frederikme/TinderBotz/archive/1.5.tar.gz', # I explain this later on | ||
download_url='https://github.com/frederikme/TinderBotz/archive/1.6.tar.gz', # I explain this later on | ||
keywords=['Tinder', 'Automation', 'bot'], # Keywords that define your project best | ||
install_requires=['selenium', 'webdriver-manager'], | ||
|
||
|
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,14 +1,16 @@ | ||
from tinderbotz.session import Session | ||
|
||
from tinderbotz.helpers.profile_helper import ProfileHelper | ||
from tinderbotz.helpers.preferences_helper import PreferencesHelper | ||
from tinderbotz.helpers.geomatch import Geomatch | ||
from tinderbotz.helpers.match import Match | ||
from tinderbotz.helpers.geomatch_helper import GeomatchHelper | ||
from tinderbotz.helpers.match_helper import MatchHelper | ||
from tinderbotz.helpers.login_helper import LoginHelper | ||
from tinderbotz.helpers.storage_helper import StorageHelper | ||
from tinderbotz.helpers.loadingbar import LoadingBar | ||
import tinderbotz.helpers | ||
|
||
from tinderbotz.helpers.constants_helper import * | ||
from tinderbotz.helpers.xpaths import * | ||
import tinderbotz.helpers.profile_helper | ||
import tinderbotz.helpers.preferences_helper | ||
import tinderbotz.helpers.geomatch | ||
import tinderbotz.helpers.match | ||
import tinderbotz.helpers.geomatch_helper | ||
import tinderbotz.helpers.match_helper | ||
import tinderbotz.helpers.login_helper | ||
import tinderbotz.helpers.storage_helper | ||
import tinderbotz.helpers.loadingbar | ||
|
||
import tinderbotz.helpers.constants_helper | ||
import tinderbotz.helpers.xpaths |