minishell 2.0.0__tar.gz → 2.0.2__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.
- minishell-2.0.2/.gitignore +1 -0
- {minishell-2.0.0 → minishell-2.0.2}/PKG-INFO +1 -4
- {minishell-2.0.0 → minishell-2.0.2}/README.md +0 -3
- {minishell-2.0.0/src/minishell → minishell-2.0.2}/minishell.py +4 -0
- minishell-2.0.2/py.typed +0 -0
- {minishell-2.0.0 → minishell-2.0.2}/pyproject.toml +6 -2
- minishell-2.0.0/.gitignore +0 -2
- minishell-2.0.0/src/minishell/__init__.py +0 -1
- {minishell-2.0.0 → minishell-2.0.2}/LICENSE +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dist/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: minishell
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Bash replacement library for Python
|
|
5
5
|
Project-URL: Homepage, https://github.com/y9san9/minishell
|
|
6
6
|
Project-URL: Issues, https://github.com/y9san9/minishell/issues
|
|
@@ -49,9 +49,6 @@ shell("ls -la | grep test")
|
|
|
49
49
|
filename = "file with spaces.txt"
|
|
50
50
|
shell("rm {}", filename)
|
|
51
51
|
|
|
52
|
-
# Multiple arguments
|
|
53
|
-
shell("git commit -m {}", "Fix: Handle edge cases")
|
|
54
|
-
|
|
55
52
|
# Capture output
|
|
56
53
|
result = shell.read("pwd")
|
|
57
54
|
print("Current dir:", result.output)
|
|
@@ -35,9 +35,6 @@ shell("ls -la | grep test")
|
|
|
35
35
|
filename = "file with spaces.txt"
|
|
36
36
|
shell("rm {}", filename)
|
|
37
37
|
|
|
38
|
-
# Multiple arguments
|
|
39
|
-
shell("git commit -m {}", "Fix: Handle edge cases")
|
|
40
|
-
|
|
41
38
|
# Capture output
|
|
42
39
|
result = shell.read("pwd")
|
|
43
40
|
print("Current dir:", result.output)
|
minishell-2.0.2/py.typed
ADDED
|
File without changes
|
|
@@ -4,9 +4,9 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "minishell"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.2"
|
|
8
8
|
authors = [
|
|
9
|
-
{ name="y9san9", email="pypi@y9san9.me" },
|
|
9
|
+
{ name = "y9san9", email = "pypi@y9san9.me" },
|
|
10
10
|
]
|
|
11
11
|
description = "Bash replacement library for Python"
|
|
12
12
|
readme = "README.md"
|
|
@@ -21,3 +21,7 @@ license-files = ["LICENSE"]
|
|
|
21
21
|
[project.urls]
|
|
22
22
|
Homepage = "https://github.com/y9san9/minishell"
|
|
23
23
|
Issues = "https://github.com/y9san9/minishell/issues"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
py-modules = ["minishell"]
|
|
27
|
+
include = ["py.typed"]
|
minishell-2.0.0/.gitignore
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from .minishell import *
|
|
File without changes
|