torrent-downloader-react 1.1.2__tar.gz → 1.1.3__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/PKG-INFO +7 -7
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/setup.py +7 -9
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader_react.egg-info/PKG-INFO +7 -7
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/setup.cfg +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/__init__.py +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/server.py +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/static/assets/index-BAUKkMK0.js +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/static/assets/index-DpeprjRI.css +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/static/index.html +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/static/vite.svg +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader_react.egg-info/SOURCES.txt +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader_react.egg-info/dependency_links.txt +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader_react.egg-info/entry_points.txt +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader_react.egg-info/requires.txt +0 -0
- {torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader_react.egg-info/top_level.txt +0 -0
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: torrent-downloader-react
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.3
|
4
4
|
Summary: A modern, user-friendly torrent downloader application
|
5
|
-
Home-page: https://github.com/
|
6
|
-
Author:
|
7
|
-
Author-email:
|
8
|
-
Project-URL: Bug Tracker, https://github.com/
|
9
|
-
Project-URL: Documentation, https://github.com/
|
10
|
-
Project-URL: Source Code, https://github.com/
|
5
|
+
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
|
+
Author: Steven Yan
|
7
|
+
Author-email: yulong.yan@uqconnect.edu.au
|
8
|
+
Project-URL: Bug Tracker, https://github.com/stevenbtc/torrent-downloader/issues
|
9
|
+
Project-URL: Documentation, https://github.com/stevenbtc/torrent-downloader#readme
|
10
|
+
Project-URL: Source Code, https://github.com/stevenbtc/torrent-downloader
|
11
11
|
Keywords: torrent,downloader,p2p,bittorrent,libtorrent
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
13
13
|
Classifier: Environment :: Web Environment
|
@@ -7,14 +7,12 @@ with open(os.path.join(os.path.dirname(os.path.dirname(__file__)), "README.md"),
|
|
7
7
|
|
8
8
|
setup(
|
9
9
|
name="torrent-downloader-react",
|
10
|
-
version="1.1.
|
10
|
+
version="1.1.3",
|
11
11
|
packages=find_packages(),
|
12
12
|
install_requires=[
|
13
13
|
"fastapi>=0.109.0",
|
14
14
|
"uvicorn>=0.27.0",
|
15
15
|
"pydantic>=2.0.0",
|
16
|
-
# Note: On macOS, you need to install libtorrent-rasterbar first:
|
17
|
-
# brew install libtorrent-rasterbar
|
18
16
|
"libtorrent>=2.0.0",
|
19
17
|
"pytest>=8.0.0",
|
20
18
|
"httpx>=0.27.0"
|
@@ -24,17 +22,17 @@ setup(
|
|
24
22
|
"torrent-downloader-react=torrent_downloader.server:main",
|
25
23
|
],
|
26
24
|
},
|
27
|
-
author="
|
28
|
-
author_email="
|
25
|
+
author="Steven Yan",
|
26
|
+
author_email="yulong.yan@uqconnect.edu.au",
|
29
27
|
description="A modern, user-friendly torrent downloader application",
|
30
28
|
long_description=long_description,
|
31
29
|
long_description_content_type="text/markdown",
|
32
30
|
keywords="torrent, downloader, p2p, bittorrent, libtorrent",
|
33
|
-
url="https://github.com/
|
31
|
+
url="https://github.com/stevenbtc/torrent-downloader",
|
34
32
|
project_urls={
|
35
|
-
"Bug Tracker": "https://github.com/
|
36
|
-
"Documentation": "https://github.com/
|
37
|
-
"Source Code": "https://github.com/
|
33
|
+
"Bug Tracker": "https://github.com/stevenbtc/torrent-downloader/issues",
|
34
|
+
"Documentation": "https://github.com/stevenbtc/torrent-downloader#readme",
|
35
|
+
"Source Code": "https://github.com/stevenbtc/torrent-downloader",
|
38
36
|
},
|
39
37
|
classifiers=[
|
40
38
|
"Development Status :: 4 - Beta",
|
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: torrent-downloader-react
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.3
|
4
4
|
Summary: A modern, user-friendly torrent downloader application
|
5
|
-
Home-page: https://github.com/
|
6
|
-
Author:
|
7
|
-
Author-email:
|
8
|
-
Project-URL: Bug Tracker, https://github.com/
|
9
|
-
Project-URL: Documentation, https://github.com/
|
10
|
-
Project-URL: Source Code, https://github.com/
|
5
|
+
Home-page: https://github.com/stevenbtc/torrent-downloader
|
6
|
+
Author: Steven Yan
|
7
|
+
Author-email: yulong.yan@uqconnect.edu.au
|
8
|
+
Project-URL: Bug Tracker, https://github.com/stevenbtc/torrent-downloader/issues
|
9
|
+
Project-URL: Documentation, https://github.com/stevenbtc/torrent-downloader#readme
|
10
|
+
Project-URL: Source Code, https://github.com/stevenbtc/torrent-downloader
|
11
11
|
Keywords: torrent,downloader,p2p,bittorrent,libtorrent
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
13
13
|
Classifier: Environment :: Web Environment
|
File without changes
|
{torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/__init__.py
RENAMED
File without changes
|
{torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/server.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{torrent-downloader-react-1.1.2 → torrent-downloader-react-1.1.3}/torrent_downloader/static/vite.svg
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|