shadowshell 0.0.12__tar.gz → 0.0.14__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,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: shadowshell
3
- Version: 0.0.12
3
+ Version: 0.0.14
4
4
  Summary: shadowshell.xyz
5
5
  Author-email: shadowshell <shadowshell@foxmail.com>
6
6
  License: MIT
@@ -8,3 +8,23 @@ Classifier: Programming Language :: Python :: 3
8
8
  Classifier: Operating System :: OS Independent
9
9
  Requires-Python: >=3.6
10
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,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "shadowshell" # 全局唯一名称(检查PyPI是否被占用)
7
- version = "0.0.12" # 版本号(每次更新需递增)
7
+ version = "0.0.14" # 版本号(每次更新需递增)
8
8
  authors = [{ name = "shadowshell", email = "shadowshell@foxmail.com" }]
9
9
  description = "shadowshell.xyz"
10
10
  readme = "README.md"
@@ -14,7 +14,7 @@ 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]
@@ -6,8 +6,12 @@ Logger
6
6
  @author: shadow shell
7
7
  """
8
8
 
9
+ import requests
10
+
9
11
  class ShadowShell:
10
12
 
11
13
  def hello(self):
12
14
  print("Hello.")
13
-
15
+
16
+ def request(self):
17
+ requests.get("https://wwww.baidu.com")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: shadowshell
3
- Version: 0.0.12
3
+ Version: 0.0.14
4
4
  Summary: shadowshell.xyz
5
5
  Author-email: shadowshell <shadowshell@foxmail.com>
6
6
  License: MIT
@@ -8,3 +8,23 @@ Classifier: Programming Language :: Python :: 3
8
8
  Classifier: Operating System :: OS Independent
9
9
  Requires-Python: >=3.6
10
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
File without changes