nict 0.0.36__tar.gz → 0.2.8__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.
- {nict-0.0.36 → nict-0.2.8}/PKG-INFO +2 -2
- {nict-0.0.36 → nict-0.2.8}/nict.egg-info/PKG-INFO +2 -2
- {nict-0.0.36 → nict-0.2.8}/nict.egg-info/SOURCES.txt +5 -1
- nict-0.2.8/nictemp/claude-dev.vsix +0 -0
- nict-0.2.8/nictemp/gitlens.vsix +0 -0
- nict-0.2.8/nictemp/python.vsix +0 -0
- nict-0.2.8/nictemp/test.sh +24 -0
- nict-0.2.8/nictemp/vscode-yaml.vsix +0 -0
- {nict-0.0.36 → nict-0.2.8}/setup.py +2 -2
- nict-0.0.36/nictemp/python-3.9.23-he99959a_0.tar.bz2 +0 -0
- {nict-0.0.36 → nict-0.2.8}/MANIFEST.in +0 -0
- {nict-0.0.36 → nict-0.2.8}/README.md +0 -0
- {nict-0.0.36 → nict-0.2.8}/nict.egg-info/dependency_links.txt +0 -0
- {nict-0.0.36 → nict-0.2.8}/nict.egg-info/top_level.txt +0 -0
- {nict-0.0.36 → nict-0.2.8}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nict
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: An easy to use library to speed up computation (by parallelizing on multi CPUs).
|
|
3
|
+
Version: 0.2.8
|
|
4
|
+
Summary: magicmind examples, An easy to use library to speed up computation (by parallelizing on multi CPUs).
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: NICHOLAS WU
|
|
7
7
|
Author-email: nicholas_wu@aliyun.com
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nict
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: An easy to use library to speed up computation (by parallelizing on multi CPUs).
|
|
3
|
+
Version: 0.2.8
|
|
4
|
+
Summary: magicmind examples, An easy to use library to speed up computation (by parallelizing on multi CPUs).
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: NICHOLAS WU
|
|
7
7
|
Author-email: nicholas_wu@aliyun.com
|
|
@@ -5,4 +5,8 @@ nict.egg-info/PKG-INFO
|
|
|
5
5
|
nict.egg-info/SOURCES.txt
|
|
6
6
|
nict.egg-info/dependency_links.txt
|
|
7
7
|
nict.egg-info/top_level.txt
|
|
8
|
-
nictemp/
|
|
8
|
+
nictemp/claude-dev.vsix
|
|
9
|
+
nictemp/gitlens.vsix
|
|
10
|
+
nictemp/python.vsix
|
|
11
|
+
nictemp/test.sh
|
|
12
|
+
nictemp/vscode-yaml.vsix
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# 下载常用扩展 VSIX 文件
|
|
3
|
+
|
|
4
|
+
EXTENSIONS=(
|
|
5
|
+
"ms-vscode/vscode-json"
|
|
6
|
+
)
|
|
7
|
+
|
|
8
|
+
for ext in "${EXTENSIONS[@]}"; do
|
|
9
|
+
PUBLISHER=$(echo $ext | cut -d'/' -f1)
|
|
10
|
+
EXTENSION=$(echo $ext | cut -d'/' -f2)
|
|
11
|
+
|
|
12
|
+
echo "下载: ${PUBLISHER}.${EXTENSION}"
|
|
13
|
+
|
|
14
|
+
# 从 Open-VSX 下载
|
|
15
|
+
API_URL="https://open-vsx.org/api/${PUBLISHER}/${EXTENSION}"
|
|
16
|
+
DOWNLOAD_URL=$(curl -s "$API_URL" | grep -o '"download":"[^"]*"' | cut -d'"' -f4)
|
|
17
|
+
|
|
18
|
+
if [ -n "$DOWNLOAD_URL" ]; then
|
|
19
|
+
wget -O "${EXTENSION}.vsix" "$DOWNLOAD_URL"
|
|
20
|
+
echo "✅ ${EXTENSION}.vsix 下载完成"
|
|
21
|
+
else
|
|
22
|
+
echo "❌ ${EXTENSION} 下载失败"
|
|
23
|
+
fi
|
|
24
|
+
done
|
|
Binary file
|
|
@@ -16,12 +16,12 @@ install_requires = []
|
|
|
16
16
|
|
|
17
17
|
setup(
|
|
18
18
|
name="nict",
|
|
19
|
-
version="0.
|
|
19
|
+
version="0.2.8",
|
|
20
20
|
python_requires=">=3.5",
|
|
21
21
|
packages=find_packages(),
|
|
22
22
|
author="NICHOLAS WU",
|
|
23
23
|
author_email="nicholas_wu@aliyun.com",
|
|
24
|
-
description="An easy to use library to speed up computation (by parallelizing on multi CPUs).",
|
|
24
|
+
description="magicmind examples, An easy to use library to speed up computation (by parallelizing on multi CPUs).",
|
|
25
25
|
long_description="就不告诉你.",
|
|
26
26
|
url="",
|
|
27
27
|
include_package_data=True,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|