devops-analyzer 0.1.0__tar.gz → 0.1.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.
- {devops_analyzer-0.1.0/devops_analyzer.egg-info → devops_analyzer-0.1.1}/PKG-INFO +3 -3
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1/devops_analyzer.egg-info}/PKG-INFO +3 -3
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/pyproject.toml +3 -3
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/LICENSE +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/MANIFEST.in +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/README.md +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/__init__.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/__main__.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/analysis.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/cli.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/config.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/config_cmd.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/extract.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/models/__init__.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/models/base.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/models/openai.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/models/zhipuai.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/scan/__init__.py +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/scan/scan.cpp +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/scan/scan.h +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops/scan/scan_bindings.cpp +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/SOURCES.txt +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/dependency_links.txt +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/entry_points.txt +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/not-zip-safe +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/requires.txt +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/top_level.txt +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/requirements.txt +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/setup.cfg +0 -0
- {devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/setup.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devops-analyzer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: 扫描源码、提取代码块、大模型分析并生成 README.md
|
|
5
5
|
Author: ZHUHK
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Requires-Python: >=3.
|
|
7
|
+
Project-URL: Homepage, https://github.com/dadaozhichen/OpenDevOps
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
Requires-Dist: tree-sitter<0.22,>=0.21.0
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devops-analyzer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: 扫描源码、提取代码块、大模型分析并生成 README.md
|
|
5
5
|
Author: ZHUHK
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Requires-Python: >=3.
|
|
7
|
+
Project-URL: Homepage, https://github.com/dadaozhichen/OpenDevOps
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
Requires-Dist: tree-sitter<0.22,>=0.21.0
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "devops-analyzer"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "扫描源码、提取代码块、大模型分析并生成 README.md"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
11
|
license = "MIT"
|
|
12
12
|
authors = [{ name = "ZHUHK" }]
|
|
13
13
|
dependencies = [
|
|
@@ -26,7 +26,7 @@ build = ["build>=1.2.0"]
|
|
|
26
26
|
devops = "devops.cli:main"
|
|
27
27
|
|
|
28
28
|
[project.urls]
|
|
29
|
-
Homepage = "https://github.com/
|
|
29
|
+
Homepage = "https://github.com/dadaozhichen/OpenDevOps"
|
|
30
30
|
|
|
31
31
|
[tool.setuptools.packages.find]
|
|
32
32
|
where = ["."]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{devops_analyzer-0.1.0 → devops_analyzer-0.1.1}/devops_analyzer.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|