git-alchemist 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

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,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:**
@@ -1,6 +1,6 @@
1
- git_alchemist-1.0.0.dist-info/licenses/LICENSE,sha256=m0_AWYEhbGuv2DeqHpVotJvfJSbWafyGQwivleB3tUI,1065
1
+ git_alchemist-1.0.1.dist-info/licenses/LICENSE,sha256=m0_AWYEhbGuv2DeqHpVotJvfJSbWafyGQwivleB3tUI,1065
2
2
  src/architect.py,sha256=zt9nqjeLJhj_98rT5GHDH1rj0s0-j1CQav7NbVPPkQA,5481
3
- src/audit.py,sha256=fuIuoxRk1yC4-2vy2qqgz1EkTavQvyHHFRxuJQjpc3s,2788
3
+ src/audit.py,sha256=Pehy1LiMZKPOquAj9G50IQ7EAp_HyNXErtSqInt58kY,2790
4
4
  src/cli.py,sha256=-_NksBB4jG2NKZmg-5OYfkPbqIQKhOKFORfdWiu0czQ,3688
5
5
  src/committer.py,sha256=O9KFavCgJa8mbsFGZoLBdtMEccwlN7yKNuaxhPtdQ-c,2249
6
6
  src/core.py,sha256=mwz5QgTIyIMKVHvfcP2Ndol_DHdZz5azx-zT_FE3VOY,1806
@@ -10,8 +10,8 @@ src/promote.py,sha256=nSmFywPI5mmHJO15dTpwZ2TO_IZT9w04XOJWF3BE0xM,3224
10
10
  src/repo_tools.py,sha256=QGkCDYRBsl4g1DAecNJtOj91nLYZkJriadY3rCLfzE4,3929
11
11
  src/sage.py,sha256=nxUEc146pKO_6TR4nBONKkRdREY08NEa2ir4BF--vX8,2227
12
12
  src/utils.py,sha256=Ncz4vczfIXcQGgXaFa-8bL3SD3Sykg46yiHDScV8-CA,1187
13
- git_alchemist-1.0.0.dist-info/METADATA,sha256=McyH9frbTwtCOm1B22_fpGZ012iDyPmisr8mk92oBEI,3219
14
- git_alchemist-1.0.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
15
- git_alchemist-1.0.0.dist-info/entry_points.txt,sha256=OcOmJI8khwZFsdRSUGGppfKdVfdGOKRRkwcSlZ-rJTI,43
16
- git_alchemist-1.0.0.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
17
- git_alchemist-1.0.0.dist-info/RECORD,,
13
+ git_alchemist-1.0.1.dist-info/METADATA,sha256=rAElIKDrBjUi6pv5GKxseCkJLVEeOheL8ga5z47GPPA,3231
14
+ git_alchemist-1.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
15
+ git_alchemist-1.0.1.dist-info/entry_points.txt,sha256=OcOmJI8khwZFsdRSUGGppfKdVfdGOKRRkwcSlZ-rJTI,43
16
+ git_alchemist-1.0.1.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
17
+ git_alchemist-1.0.1.dist-info/RECORD,,
src/audit.py CHANGED
@@ -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