torrent-downloader-react 1.0.0__tar.gz → 1.0.5__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torrent-downloader-react
3
- Version: 1.0.0
3
+ Version: 1.0.5
4
4
  Summary: A modern, user-friendly torrent downloader application
5
5
  Home-page: https://github.com/yourusername/torrent-downloader
6
6
  Author: Your Name
@@ -37,16 +37,68 @@ A modern, user-friendly torrent downloader application built with React and Pyth
37
37
  - Easy-to-use magnet link support
38
38
  - Dark mode support
39
39
 
40
+ ## Prerequisites
41
+
42
+ Before installing, make sure you have the required system dependencies:
43
+
44
+ ### Windows
45
+ - Python 3.8 or higher
46
+ - Microsoft Visual C++ Redistributable (latest version)
47
+ - Libtorrent:
48
+ ```bash
49
+ # Option 1: Using pip
50
+ pip install python-libtorrent
51
+
52
+ # Option 2: Using conda
53
+ conda install -c conda-forge libtorrent
54
+ ```
55
+
56
+ ### macOS
57
+ ```bash
58
+ # Using Homebrew (recommended)
59
+ brew install libtorrent-rasterbar
60
+
61
+ # Or using conda
62
+ conda install -c conda-forge libtorrent
63
+ ```
64
+
65
+ ### Linux (Ubuntu/Debian)
66
+ ```bash
67
+ sudo apt-get update
68
+ sudo apt-get install python3-libtorrent
69
+
70
+ # Or using conda
71
+ conda install -c conda-forge libtorrent
72
+ ```
73
+
74
+ ### Linux (Fedora)
75
+ ```bash
76
+ sudo dnf install rb_libtorrent-python3
77
+
78
+ # Or using conda
79
+ conda install -c conda-forge libtorrent
80
+ ```
81
+
82
+ ### Using Conda (All Platforms)
83
+ If you're using Conda, you can install libtorrent in your environment:
84
+ ```bash
85
+ conda create -n torrent-env python=3.11
86
+ conda activate torrent-env
87
+ conda install -c conda-forge libtorrent
88
+ ```
89
+
40
90
  ## Installation
41
91
 
42
92
  ### Method 1: Using pip (Recommended)
43
93
 
44
94
  ```bash
45
- # Install the package
46
- pip install torrent-downloader
95
+ # 1. Install libtorrent (see Prerequisites section above)
47
96
 
48
- # Run the application
49
- torrent-downloader
97
+ # 2. Install the package
98
+ pip install torrent-downloader-react
99
+
100
+ # 3. Run the application
101
+ torrent-downloader-react
50
102
  ```
51
103
 
52
104
  The application will start and open in your default web browser at http://127.0.0.1:8000
@@ -7,12 +7,11 @@ 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.0.0",
10
+ version="1.0.5",
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
13
  "fastapi>=0.109.0",
14
14
  "uvicorn>=0.27.0",
15
- "python-libtorrent>=2.0.0",
16
15
  "pydantic>=2.0.0"
17
16
  ],
18
17
  entry_points={
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torrent-downloader-react
3
- Version: 1.0.0
3
+ Version: 1.0.5
4
4
  Summary: A modern, user-friendly torrent downloader application
5
5
  Home-page: https://github.com/yourusername/torrent-downloader
6
6
  Author: Your Name
@@ -37,16 +37,68 @@ A modern, user-friendly torrent downloader application built with React and Pyth
37
37
  - Easy-to-use magnet link support
38
38
  - Dark mode support
39
39
 
40
+ ## Prerequisites
41
+
42
+ Before installing, make sure you have the required system dependencies:
43
+
44
+ ### Windows
45
+ - Python 3.8 or higher
46
+ - Microsoft Visual C++ Redistributable (latest version)
47
+ - Libtorrent:
48
+ ```bash
49
+ # Option 1: Using pip
50
+ pip install python-libtorrent
51
+
52
+ # Option 2: Using conda
53
+ conda install -c conda-forge libtorrent
54
+ ```
55
+
56
+ ### macOS
57
+ ```bash
58
+ # Using Homebrew (recommended)
59
+ brew install libtorrent-rasterbar
60
+
61
+ # Or using conda
62
+ conda install -c conda-forge libtorrent
63
+ ```
64
+
65
+ ### Linux (Ubuntu/Debian)
66
+ ```bash
67
+ sudo apt-get update
68
+ sudo apt-get install python3-libtorrent
69
+
70
+ # Or using conda
71
+ conda install -c conda-forge libtorrent
72
+ ```
73
+
74
+ ### Linux (Fedora)
75
+ ```bash
76
+ sudo dnf install rb_libtorrent-python3
77
+
78
+ # Or using conda
79
+ conda install -c conda-forge libtorrent
80
+ ```
81
+
82
+ ### Using Conda (All Platforms)
83
+ If you're using Conda, you can install libtorrent in your environment:
84
+ ```bash
85
+ conda create -n torrent-env python=3.11
86
+ conda activate torrent-env
87
+ conda install -c conda-forge libtorrent
88
+ ```
89
+
40
90
  ## Installation
41
91
 
42
92
  ### Method 1: Using pip (Recommended)
43
93
 
44
94
  ```bash
45
- # Install the package
46
- pip install torrent-downloader
95
+ # 1. Install libtorrent (see Prerequisites section above)
47
96
 
48
- # Run the application
49
- torrent-downloader
97
+ # 2. Install the package
98
+ pip install torrent-downloader-react
99
+
100
+ # 3. Run the application
101
+ torrent-downloader-react
50
102
  ```
51
103
 
52
104
  The application will start and open in your default web browser at http://127.0.0.1:8000
@@ -1,4 +1,3 @@
1
1
  fastapi>=0.109.0
2
2
  uvicorn>=0.27.0
3
- python-libtorrent>=2.0.0
4
3
  pydantic>=2.0.0