git-alchemist 1.0.0__tar.gz → 1.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.
Files changed (22) hide show
  1. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/PKG-INFO +2 -2
  2. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/README.md +1 -1
  3. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/git_alchemist.egg-info/PKG-INFO +2 -2
  4. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/pyproject.toml +1 -1
  5. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/audit.py +1 -1
  6. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/LICENSE +0 -0
  7. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/git_alchemist.egg-info/SOURCES.txt +0 -0
  8. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/git_alchemist.egg-info/dependency_links.txt +0 -0
  9. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/git_alchemist.egg-info/entry_points.txt +0 -0
  10. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/git_alchemist.egg-info/requires.txt +0 -0
  11. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/git_alchemist.egg-info/top_level.txt +0 -0
  12. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/setup.cfg +0 -0
  13. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/architect.py +0 -0
  14. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/cli.py +0 -0
  15. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/committer.py +0 -0
  16. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/core.py +0 -0
  17. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/issue_gen.py +0 -0
  18. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/profile_gen.py +0 -0
  19. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/promote.py +0 -0
  20. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/repo_tools.py +0 -0
  21. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/sage.py +0 -0
  22. {git_alchemist-1.0.0 → git_alchemist-1.0.1}/src/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-alchemist
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A unified AI stack to optimize, describe, and architect your GitHub repositories.
5
5
  Author: abduznik
6
6
  License: MIT
@@ -50,7 +50,7 @@ Git-Alchemist features a dynamic fallback system to ensure you never hit a quota
50
50
 
51
51
  2. **Install as a Global Library:**
52
52
  ```bash
53
- pip install .
53
+ pip install git-alchemist
54
54
  ```
55
55
 
56
56
  3. **Set up your Environment:**
@@ -35,7 +35,7 @@ Git-Alchemist features a dynamic fallback system to ensure you never hit a quota
35
35
 
36
36
  2. **Install as a Global Library:**
37
37
  ```bash
38
- pip install .
38
+ pip install git-alchemist
39
39
  ```
40
40
 
41
41
  3. **Set up your Environment:**
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-alchemist
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A unified AI stack to optimize, describe, and architect your GitHub repositories.
5
5
  Author: abduznik
6
6
  License: MIT
@@ -50,7 +50,7 @@ Git-Alchemist features a dynamic fallback system to ensure you never hit a quota
50
50
 
51
51
  2. **Install as a Global Library:**
52
52
  ```bash
53
- pip install .
53
+ pip install git-alchemist
54
54
  ```
55
55
 
56
56
  3. **Set up your Environment:**
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "git-alchemist"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "A unified AI stack to optimize, describe, and architect your GitHub repositories."
9
9
  readme = "README.md"
10
10
  authors = [{ name = "abduznik" }]
@@ -31,7 +31,7 @@ def run_audit(user=None, repo_name=None):
31
31
  "LICENSE": {"score": 10, "found": bool(repo_data.get("licenseInfo")) or any(os.path.exists(f) for f in ["LICENSE", "LICENSE.md", "LICENSE.txt"])},
32
32
  "CONTRIBUTING.md": {"score": 10, "found": any(os.path.exists(f) for f in ["CONTRIBUTING.md", "CONTRIBUTING"])},
33
33
  "Metadata: Description": {"score": 20, "found": bool(repo_data.get("description"))},
34
- "Metadata: Topics": {"score": 20, "found": len(repo_data.get("repositoryTopics", [])) >= 3},
34
+ "Metadata: Topics": {"score": 20, "found": len(repo_data.get("repositoryTopics") or []) >= 3},
35
35
  "CI/CD: GitHub Actions": {"score": 20, "found": os.path.exists(".github/workflows")},
36
36
  }
37
37
 
File without changes
File without changes
File without changes
File without changes
File without changes