PyPiShrink 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.
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: PyPiShrink
3
+ Version: 0.1.1
4
+ Description-Content-Type: text/markdown
5
+
6
+ # PyPiShrink
7
+
8
+ Python script to make Raspberry Pi (and other?) image files smaller
9
+
10
+ Inspired by [PiShrink](https://github.com/Drewsif/PiShrink) but written in Python
11
+
12
+ As an original shell script, this script just automates running commands like
13
+
14
+ * `parted`
15
+ * `e2fsck`
16
+ * `resize2fs`
17
+ * `tune2fs`
18
+ * `losetup`
19
+
20
+ These tools should be installed. User should have `sudo` permissions.
21
+
22
+ Not all features of an original script are implemented. But this script also can shrink image with more than two
23
+ partitions. It can move resized partitions what original script can't do.
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: PyPiShrink
3
+ Version: 0.1.1
4
+ Description-Content-Type: text/markdown
5
+
6
+ # PyPiShrink
7
+
8
+ Python script to make Raspberry Pi (and other?) image files smaller
9
+
10
+ Inspired by [PiShrink](https://github.com/Drewsif/PiShrink) but written in Python
11
+
12
+ As an original shell script, this script just automates running commands like
13
+
14
+ * `parted`
15
+ * `e2fsck`
16
+ * `resize2fs`
17
+ * `tune2fs`
18
+ * `losetup`
19
+
20
+ These tools should be installed. User should have `sudo` permissions.
21
+
22
+ Not all features of an original script are implemented. But this script also can shrink image with more than two
23
+ partitions. It can move resized partitions what original script can't do.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ PyPiShrink.egg-info/PKG-INFO
4
+ PyPiShrink.egg-info/SOURCES.txt
5
+ PyPiShrink.egg-info/dependency_links.txt
6
+ PyPiShrink.egg-info/requires.txt
7
+ PyPiShrink.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ NormalPyRunner
@@ -0,0 +1,18 @@
1
+ # PyPiShrink
2
+
3
+ Python script to make Raspberry Pi (and other?) image files smaller
4
+
5
+ Inspired by [PiShrink](https://github.com/Drewsif/PiShrink) but written in Python
6
+
7
+ As an original shell script, this script just automates running commands like
8
+
9
+ * `parted`
10
+ * `e2fsck`
11
+ * `resize2fs`
12
+ * `tune2fs`
13
+ * `losetup`
14
+
15
+ These tools should be installed. User should have `sudo` permissions.
16
+
17
+ Not all features of an original script are implemented. But this script also can shrink image with more than two
18
+ partitions. It can move resized partitions what original script can't do.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as f:
4
+ long_description = f.read()
5
+
6
+
7
+ setup(
8
+ name='PyPiShrink',
9
+ version='0.1.1',
10
+ long_description=long_description,
11
+ long_description_content_type='text/markdown',
12
+ packages=find_packages(),
13
+ install_requires=[
14
+ 'NormalPyRunner'
15
+ ],
16
+ )