shadowshell 0.0.9__tar.gz → 0.0.10__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.9 → shadowshell-0.0.10}/PKG-INFO +1 -1
- {shadowshell-0.0.9 → shadowshell-0.0.10}/pyproject.toml +1 -1
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/__init__.py +2 -2
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell.egg-info/PKG-INFO +1 -1
- {shadowshell-0.0.9 → shadowshell-0.0.10}/setup.cfg +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/git_shell.py +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/logutil/__init__.py +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/logutil/console_logger.py +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/logutil/logger.py +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/logutil/logger_factory.py +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell/shadowshell.py +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell.egg-info/SOURCES.txt +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell.egg-info/dependency_links.txt +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/src/shadowshell.egg-info/top_level.txt +0 -0
- {shadowshell-0.0.9 → shadowshell-0.0.10}/tests/tests.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "shadowshell" # 全局唯一名称(检查PyPI是否被占用)
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.10" # 版本号(每次更新需递增)
|
|
8
8
|
authors = [{ name = "shadowshell", email = "shadowshell@foxmail.com" }]
|
|
9
9
|
description = "shadowshell.xyz"
|
|
10
10
|
readme = "README.md"
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
8
|
from .shadowshell import ShadowShell
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
from .logutil.logger import Logger
|
|
10
|
+
from .logutil.logger_factory import LoggerFactory
|
|
11
11
|
|
|
12
12
|
from .git_shell import GitShell
|
|
13
13
|
|
|
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
|
|
File without changes
|