shadowshell 0.0.1__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.1/PKG-INFO +10 -0
- shadowshell-0.0.1/pyproject.toml +17 -0
- shadowshell-0.0.1/setup.cfg +4 -0
- shadowshell-0.0.1/shadowshell.egg-info/PKG-INFO +10 -0
- shadowshell-0.0.1/shadowshell.egg-info/SOURCES.txt +6 -0
- shadowshell-0.0.1/shadowshell.egg-info/dependency_links.txt +1 -0
- shadowshell-0.0.1/shadowshell.egg-info/top_level.txt +1 -0
- shadowshell-0.0.1/shadowshell.py +13 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: shadowshell
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: shadowshell.xyz
|
|
5
|
+
Author-email: shadow shell <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
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "shadowshell" # 全局唯一名称(检查PyPI是否被占用)
|
|
7
|
+
version = "0.0.1" # 版本号(每次更新需递增)
|
|
8
|
+
authors = [{ name = "shadow shell", email = "shadowshell@foxmail.com" }]
|
|
9
|
+
description = "shadowshell.xyz"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.8" # 支持的Python版本
|
|
12
|
+
license = { text = "MIT" } # 协议类型
|
|
13
|
+
classifiers = [ # 分类标签(可选)
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
]
|
|
17
|
+
dependencies = [] # 依赖库(如 ["requests>=2.25"])
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: shadowshell
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: shadowshell.xyz
|
|
5
|
+
Author-email: shadow shell <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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
shadowshell
|