Skip to content

Commit 9b58957

Browse files
committed
Fixed dependencies version, changed some bad imports
1 parent a010dac commit 9b58957

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

Pipfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ pylint = "*"
88
autopep8 = "*"
99

1010
[packages]
11-
requests = "*"
11+
requests = "==2.23.0"
1212
justlog = "*"
13-
tabulate = "*"
14-
colorama = "*"
15-
transmission-clutch = "*"
16-
deluge-client = "*"
17-
python-qbittorrent = "*"
13+
tabulate = "==0.8.7"
14+
colorama = "==0.4.3"
15+
transmission-clutch = "==3.1.0"
16+
deluge-client = "==1.8.0"
17+
python-qbittorrent = "==0.4.2"
1818

1919
[requires]
20-
python_version = "3.7"
20+
python_version = "3"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Raincoat is a CLI tool to search torrents using [Jackett](https://github.com/Jac
1414

1515
### Usage
1616

17-
`raincoat`
17+
`raincoat terms_to_search`
1818

1919
#### Parameters
2020

@@ -39,7 +39,7 @@ Upon installation, a config file is created in your home directory. Before you c
3939
{
4040
"jackett_apikey": "",
4141
"jackett_url": "http://your_base_jackett_url",
42-
"jacket_indexer": "all",
42+
"jackett_indexer": "all",
4343
"description_length": 100,
4444
"exclude": "words to exclude",
4545
"results_limit": 20,

raincoat/raincoat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515

1616
# Constants
17-
VERSION = "0.5"
17+
VERSION = "0.7"
1818
APP_NAME = "Raincoat"
1919

2020
parser = argparse.ArgumentParser()
21-
parser.add_argument("search", help="The field to search.")
21+
parser.add_argument("search", help="What to search for.")
2222
parser.add_argument("-k", "--key", help="The Jackett API key.")
2323
parser.add_argument("-l", "--length", help="Max results description length.", type=int)
2424
parser.add_argument("-L", "--limit", help="Max number of results.", type=int)

raincoat/torrent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from clutch.core import Client as tClient
1+
from clutch import Client as tClient
22
from deluge_client import DelugeRPCClient
33
from qbittorrent import Client as qClient
44
from .helpers import fetch_torrent_url

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def run(self):
3434

3535
setuptools.setup(
3636
name="raincoat-jackett",
37-
version="0.6",
37+
version="0.7",
3838
author="Gabisonfire",
3939
author_email="gabisonfire@github.com",
4040
description="Raincoat is a tool to search torrents using Jackett and send them to your client.",
@@ -53,7 +53,7 @@ def run(self):
5353
"Operating System :: Unix",
5454
"Topic :: Communications :: File Sharing",
5555
],
56-
install_requires=["requests", "justlog", "colorama", "tabulate", "transmission-clutch", "deluge-client", "python-qbittorrent"],
56+
install_requires=["requests==2.23.0", "justlog", "colorama==0.4.3", "tabulate==0.8.7", "transmission-clutch==3.1.0", "deluge-client==1.8.0", "python-qbittorrent==0.4.2"],
5757
cmdclass={
5858
'install': PostInstallCommand
5959
},

0 commit comments

Comments
 (0)