Skip to content

Commit

Permalink
Merge pull request #80 from RileyXX/fix-for-missing-package-requirement
Browse files Browse the repository at this point in the history
Fix for missing package requirement
  • Loading branch information
RileyXX authored Dec 4, 2023
2 parents de63168 + f806eba commit 270e56c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
with codecs.open(os.path.join(here, "README.md"), 'r', encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = '1.8.5'
VERSION = '1.8.6'
DESCRIPTION = 'A python script that syncs user watchlist, ratings and reviews for Movies, TV Shows and Episodes both ways between Trakt and IMDB.'

# Setting up
Expand All @@ -23,7 +23,7 @@
long_description=long_description,
url="https://github.com/RileyXX/IMDB-Trakt-Syncer",
packages=find_packages(),
install_requires=['requests', 'feedparser', 'selenium'],
install_requires=['requests', 'feedparser', 'selenium', 'setuptools'],
keywords=['python', 'video', 'trakt', 'imdb', 'ratings', 'sync', 'movies', 'tv shows'],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 270e56c

Please sign in to comment.