Skip to content

Commit

Permalink
attempt Pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikme committed Jun 5, 2021
1 parent b6d5b56 commit a390edb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],

Expand Down
24 changes: 13 additions & 11 deletions tinderbotz/__init__.py
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

0 comments on commit a390edb

Please sign in to comment.