likebook-wifi-book-uploader 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/PKG-INFO +2 -3
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.egg-info/PKG-INFO +2 -3
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/pyproject.toml +2 -3
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/LICENSE +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/README.md +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.egg-info/SOURCES.txt +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.egg-info/dependency_links.txt +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.egg-info/entry_points.txt +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.egg-info/requires.txt +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.egg-info/top_level.txt +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/likebook_wifi_book_uploader.py +0 -0
- {likebook_wifi_book_uploader-0.1.0 → likebook_wifi_book_uploader-0.1.1}/setup.cfg +0 -0
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: likebook-wifi-book-uploader
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: CLI to manage books on Likebook e-readers via WiFi Book Transfer
|
|
5
5
|
Author: Pablo Ventura
|
|
6
|
-
License: GPL-3.0-or-later
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
7
|
Project-URL: Homepage, https://github.com/pablogventura/likebook-wifi-book-uploader
|
|
8
8
|
Project-URL: Repository, https://github.com/pablogventura/likebook-wifi-book-uploader
|
|
9
9
|
Keywords: likebook,ereader,wifi,books,ebook,transfer
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Environment :: Console
|
|
12
12
|
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
14
13
|
Classifier: Operating System :: OS Independent
|
|
15
14
|
Classifier: Programming Language :: Python :: 3
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.8
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: likebook-wifi-book-uploader
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: CLI to manage books on Likebook e-readers via WiFi Book Transfer
|
|
5
5
|
Author: Pablo Ventura
|
|
6
|
-
License: GPL-3.0-or-later
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
7
|
Project-URL: Homepage, https://github.com/pablogventura/likebook-wifi-book-uploader
|
|
8
8
|
Project-URL: Repository, https://github.com/pablogventura/likebook-wifi-book-uploader
|
|
9
9
|
Keywords: likebook,ereader,wifi,books,ebook,transfer
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Environment :: Console
|
|
12
12
|
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
14
13
|
Classifier: Operating System :: OS Independent
|
|
15
14
|
Classifier: Programming Language :: Python :: 3
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.8
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "likebook-wifi-book-uploader"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "CLI to manage books on Likebook e-readers via WiFi Book Transfer"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
license =
|
|
10
|
+
license = "GPL-3.0-or-later"
|
|
11
11
|
requires-python = ">=3.8"
|
|
12
12
|
dependencies = ["requests>=2.28.0"]
|
|
13
13
|
authors = [
|
|
@@ -18,7 +18,6 @@ classifiers = [
|
|
|
18
18
|
"Development Status :: 4 - Beta",
|
|
19
19
|
"Environment :: Console",
|
|
20
20
|
"Intended Audience :: End Users/Desktop",
|
|
21
|
-
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
22
21
|
"Operating System :: OS Independent",
|
|
23
22
|
"Programming Language :: Python :: 3",
|
|
24
23
|
"Programming Language :: Python :: 3.8",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|