shadowshell 0.0.11__tar.gz → 0.0.13__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.
- shadowshell-0.0.13/PKG-INFO +30 -0
- shadowshell-0.0.13/README.md +18 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/pyproject.toml +3 -3
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/shadowshell.py +5 -1
- shadowshell-0.0.13/src/shadowshell.egg-info/PKG-INFO +30 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell.egg-info/SOURCES.txt +2 -0
- shadowshell-0.0.13/src/shadowshell.egg-info/requires.txt +1 -0
- shadowshell-0.0.11/PKG-INFO +0 -10
- shadowshell-0.0.11/src/shadowshell.egg-info/PKG-INFO +0 -10
- {shadowshell-0.0.11 → shadowshell-0.0.13}/setup.cfg +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/__init__.py +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/git_shell.py +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/logutil/__init__.py +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/logutil/console_logger.py +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/logutil/logger.py +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell/logutil/logger_factory.py +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell.egg-info/dependency_links.txt +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/src/shadowshell.egg-info/top_level.txt +0 -0
- {shadowshell-0.0.11 → shadowshell-0.0.13}/tests/tests.py +0 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: shadowshell
|
|
3
|
+
Version: 0.0.13
|
|
4
|
+
Summary: shadowshell.xyz
|
|
5
|
+
Author-email: shadowshell <shadowshell@foxmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Install
|
|
16
|
+
|
|
17
|
+
``` BASH
|
|
18
|
+
|
|
19
|
+
> pip3 install shadowshell --upgrade
|
|
20
|
+
|
|
21
|
+
# > pip3 install shadowshell --upgrade -i https://pypi.org/simple/
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
``` BASH
|
|
27
|
+
|
|
28
|
+
> python3 -c "from shadowshell import ShadowShell; ShadowShell().hello();"
|
|
29
|
+
|
|
30
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# Install
|
|
4
|
+
|
|
5
|
+
``` BASH
|
|
6
|
+
|
|
7
|
+
> pip3 install shadowshell --upgrade
|
|
8
|
+
|
|
9
|
+
# > pip3 install shadowshell --upgrade -i https://pypi.org/simple/
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
``` BASH
|
|
15
|
+
|
|
16
|
+
> python3 -c "from shadowshell import ShadowShell; ShadowShell().hello();"
|
|
17
|
+
|
|
18
|
+
```
|
|
@@ -4,17 +4,17 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "shadowshell" # 全局唯一名称(检查PyPI是否被占用)
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.13" # 版本号(每次更新需递增)
|
|
8
8
|
authors = [{ name = "shadowshell", email = "shadowshell@foxmail.com" }]
|
|
9
9
|
description = "shadowshell.xyz"
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.6" # 支持的Python版本
|
|
12
12
|
license = { text = "MIT" } # 协议类型
|
|
13
13
|
classifiers = [ # 分类标签(可选)
|
|
14
14
|
"Programming Language :: Python :: 3",
|
|
15
15
|
"Operating System :: OS Independent",
|
|
16
16
|
]
|
|
17
|
-
dependencies = [] # 依赖库(如 ["requests>=2.25"])
|
|
17
|
+
dependencies = ["requests"] # 依赖库(如 ["requests>=2.25"])
|
|
18
18
|
|
|
19
19
|
# 关键配置:指定包路径和自动发现规则
|
|
20
20
|
[tool.setuptools]
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: shadowshell
|
|
3
|
+
Version: 0.0.13
|
|
4
|
+
Summary: shadowshell.xyz
|
|
5
|
+
Author-email: shadowshell <shadowshell@foxmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Install
|
|
16
|
+
|
|
17
|
+
``` BASH
|
|
18
|
+
|
|
19
|
+
> pip3 install shadowshell --upgrade
|
|
20
|
+
|
|
21
|
+
# > pip3 install shadowshell --upgrade -i https://pypi.org/simple/
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
``` BASH
|
|
27
|
+
|
|
28
|
+
> python3 -c "from shadowshell import ShadowShell; ShadowShell().hello();"
|
|
29
|
+
|
|
30
|
+
```
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
README.md
|
|
1
2
|
pyproject.toml
|
|
2
3
|
src/shadowshell/__init__.py
|
|
3
4
|
src/shadowshell/git_shell.py
|
|
@@ -5,6 +6,7 @@ src/shadowshell/shadowshell.py
|
|
|
5
6
|
src/shadowshell.egg-info/PKG-INFO
|
|
6
7
|
src/shadowshell.egg-info/SOURCES.txt
|
|
7
8
|
src/shadowshell.egg-info/dependency_links.txt
|
|
9
|
+
src/shadowshell.egg-info/requires.txt
|
|
8
10
|
src/shadowshell.egg-info/top_level.txt
|
|
9
11
|
src/shadowshell/logutil/__init__.py
|
|
10
12
|
src/shadowshell/logutil/console_logger.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
requests
|
shadowshell-0.0.11/PKG-INFO
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: shadowshell
|
|
3
|
-
Version: 0.0.11
|
|
4
|
-
Summary: shadowshell.xyz
|
|
5
|
-
Author-email: shadowshell <shadowshell@foxmail.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Requires-Python: >=3.8
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: shadowshell
|
|
3
|
-
Version: 0.0.11
|
|
4
|
-
Summary: shadowshell.xyz
|
|
5
|
-
Author-email: shadowshell <shadowshell@foxmail.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Requires-Python: >=3.8
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
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
|
|
File without changes
|