We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca5316 commit 15e5a8bCopy full SHA for 15e5a8b
packaging/innoSetup/WinInstaller.iss
@@ -4,7 +4,7 @@
4
5
[Setup]
6
AppName=qbit-watcher
7
-AppVersion=1.0.1
+AppVersion=1.1.0
8
WizardStyle=modern
9
DefaultDirName={autopf}\qbit-watcher
10
Uninstallable=yes
requirements.txt
@@ -1,4 +1,5 @@
1
pyyaml==5.1.2
2
+pysftp==0.2.9
3
pyinstaller==4.0
qbittorrent-api==2020.10.11
watchdog==0.10.3
setup.py
@@ -3,14 +3,15 @@
setup(
name="qbit_watcher",
- version="1.0.1",
+ version="1.1.0",
packages=find_packages(),
entry_points={
"console_scripts": [
'qbit_watcher=qbit_watcher.main:main'
11
]
12
},
13
install_requires=[
14
+ "pysftp==0.2.9",
15
"pyyaml==5.1.2",
16
"qbittorrent-api==2020.10.11",
17
"watchdog==0.10.3",
0 commit comments