nict 0.0.15__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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nict
3
- Version: 0.0.15
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.0.15
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/P020200612582987902992.PDF
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
@@ -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,15 +16,15 @@ install_requires = []
16
16
 
17
17
  setup(
18
18
  name="nict",
19
- version="0.0.15",
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,
28
28
  install_requires=install_requires,
29
29
  license="MIT",
30
- )
30
+ )
File without changes
File without changes
File without changes
File without changes