shadowshell 0.0.2__tar.gz → 0.0.3__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.2 → shadowshell-0.0.3}/PKG-INFO +1 -1
- {shadowshell-0.0.2 → shadowshell-0.0.3}/pyproject.toml +2 -2
- {shadowshell-0.0.2/src/broker → shadowshell-0.0.3/src/githshell}/__init__.py +2 -2
- shadowshell-0.0.2/src/broker/git_broker.py → shadowshell-0.0.3/src/githshell/git_shell.py +1 -1
- {shadowshell-0.0.2/src/logutil → shadowshell-0.0.3/src/logshell}/adapter/console_logger.py +1 -1
- {shadowshell-0.0.2/src/logutil → shadowshell-0.0.3/src/logshell}/logger.py +2 -1
- {shadowshell-0.0.2 → shadowshell-0.0.3}/src/shadowshell.egg-info/PKG-INFO +1 -1
- shadowshell-0.0.3/src/shadowshell.egg-info/SOURCES.txt +12 -0
- shadowshell-0.0.3/src/shadowshell.egg-info/top_level.txt +2 -0
- shadowshell-0.0.2/src/shadowshell.egg-info/SOURCES.txt +0 -12
- shadowshell-0.0.2/src/shadowshell.egg-info/top_level.txt +0 -2
- {shadowshell-0.0.2 → shadowshell-0.0.3}/setup.cfg +0 -0
- {shadowshell-0.0.2/src/logutil → shadowshell-0.0.3/src/logshell}/__init__.py +0 -0
- {shadowshell-0.0.2/src/logutil → shadowshell-0.0.3/src/logshell}/adapter/__init__.py +0 -0
- {shadowshell-0.0.2/src/logutil → shadowshell-0.0.3/src/logshell}/logger_factory.py +0 -0
- {shadowshell-0.0.2 → shadowshell-0.0.3}/src/shadowshell.egg-info/dependency_links.txt +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.3" # 版本号(每次更新需递增)
|
|
8
8
|
authors = [{ name = "shadowshell", email = "shadowshell@foxmail.com" }]
|
|
9
9
|
description = "shadowshell.xyz"
|
|
10
10
|
readme = "README.md"
|
|
@@ -19,5 +19,5 @@ dependencies = [] # 依赖库(如 ["requests>=2.25"])
|
|
|
19
19
|
# 关键配置:指定包路径和自动发现规则
|
|
20
20
|
[tool.setuptools]
|
|
21
21
|
package-dir = { "" = "src" } # 所有包位于 src 目录下
|
|
22
|
-
# packages = ["
|
|
22
|
+
# packages = ["gitshell", "logshell"]
|
|
23
23
|
packages = { find = { where = ["src"] } }
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
pyproject.toml
|
|
2
|
+
src/githshell/__init__.py
|
|
3
|
+
src/githshell/git_shell.py
|
|
4
|
+
src/logshell/__init__.py
|
|
5
|
+
src/logshell/logger.py
|
|
6
|
+
src/logshell/logger_factory.py
|
|
7
|
+
src/logshell/adapter/__init__.py
|
|
8
|
+
src/logshell/adapter/console_logger.py
|
|
9
|
+
src/shadowshell.egg-info/PKG-INFO
|
|
10
|
+
src/shadowshell.egg-info/SOURCES.txt
|
|
11
|
+
src/shadowshell.egg-info/dependency_links.txt
|
|
12
|
+
src/shadowshell.egg-info/top_level.txt
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
pyproject.toml
|
|
2
|
-
src/broker/__init__.py
|
|
3
|
-
src/broker/git_broker.py
|
|
4
|
-
src/logutil/__init__.py
|
|
5
|
-
src/logutil/logger.py
|
|
6
|
-
src/logutil/logger_factory.py
|
|
7
|
-
src/logutil/adapter/__init__.py
|
|
8
|
-
src/logutil/adapter/console_logger.py
|
|
9
|
-
src/shadowshell.egg-info/PKG-INFO
|
|
10
|
-
src/shadowshell.egg-info/SOURCES.txt
|
|
11
|
-
src/shadowshell.egg-info/dependency_links.txt
|
|
12
|
-
src/shadowshell.egg-info/top_level.txt
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|