shadowshell 0.0.10__tar.gz → 0.0.12__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.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: shadowshell
3
- Version: 0.0.10
3
+ Version: 0.0.12
4
4
  Summary: shadowshell.xyz
5
5
  Author-email: shadowshell <shadowshell@foxmail.com>
6
6
  License: MIT
7
7
  Classifier: Programming Language :: Python :: 3
8
8
  Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.6
10
10
  Description-Content-Type: text/markdown
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "shadowshell" # 全局唯一名称(检查PyPI是否被占用)
7
- version = "0.0.10" # 版本号(每次更新需递增)
7
+ version = "0.0.12" # 版本号(每次更新需递增)
8
8
  authors = [{ name = "shadowshell", email = "shadowshell@foxmail.com" }]
9
9
  description = "shadowshell.xyz"
10
10
  readme = "README.md"
11
- requires-python = ">=3.8" # 支持的Python版本
11
+ requires-python = ">=3.6" # 支持的Python版本
12
12
  license = { text = "MIT" } # 协议类型
13
13
  classifiers = [ # 分类标签(可选)
14
14
  "Programming Language :: Python :: 3",
@@ -6,7 +6,7 @@ ConsoleLogger
6
6
  author: shadow shell
7
7
  """
8
8
 
9
- from logger import Logger
9
+ from .logger import Logger
10
10
 
11
11
  class ConsoleLogger(Logger):
12
12
 
@@ -6,7 +6,7 @@ LoggerFactory
6
6
  @author: shadow shell
7
7
  """
8
8
 
9
- from console_logger import ConsoleLogger
9
+ from .console_logger import ConsoleLogger
10
10
 
11
11
  class LoggerFactory:
12
12
 
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: shadowshell
3
- Version: 0.0.10
3
+ Version: 0.0.12
4
4
  Summary: shadowshell.xyz
5
5
  Author-email: shadowshell <shadowshell@foxmail.com>
6
6
  License: MIT
7
7
  Classifier: Programming Language :: Python :: 3
8
8
  Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.6
10
10
  Description-Content-Type: text/markdown
File without changes