ace-git-copilot 0.2.1__tar.gz → 0.2.2__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.
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/PKG-INFO +7 -1
- ace_git_copilot-0.2.2/ace/__init__.py +1 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/cli.py +0 -1
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/pyproject.toml +9 -1
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_llm_factory.py +0 -1
- ace_git_copilot-0.2.1/ace/__init__.py +0 -1
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/.env.example +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/.github/workflows/tests.yml +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/.gitignore +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/README.md +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/__main__.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/changelog_generator.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/code_reviewer.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/commit_generator.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/conflict_resolver.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/gitignore_generator.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/history_analyzer.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/intent_parser.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/llm_factory.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/pr_drafter.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/changelog.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/commit.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/conflict.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/explain.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/ignore.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/intent.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/pr.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/review.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/search.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ai/prompts/undo.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/core/config.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/core/context.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/core/git_ops.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/core/safety.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ui/banner.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ui/dashboard.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ui/display.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ui/prompts.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/ui/themes.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/utils/conflict_parser.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/utils/diff_parser.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/ace/utils/json_utils.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/conftest.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_changelog_generator.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_code_reviewer.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_conflict_resolver.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_diff_trimmer.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_git_ops.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_help.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_history_analyzer.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_ignore.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_intent_parser.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_pr_drafter.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_safety.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_search.py +0 -0
- {ace_git_copilot-0.2.1 → ace_git_copilot-0.2.2}/tests/test_undo.py +0 -0
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ace-git-copilot
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: AI-powered Git copilot — talk to Git in plain English
|
|
5
|
+
License: MIT
|
|
6
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
5
11
|
Requires-Python: >=3.11
|
|
6
12
|
Requires-Dist: click>=8.0
|
|
7
13
|
Requires-Dist: gitpython>=3.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.2"
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ace-git-copilot"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "AI-powered Git copilot — talk to Git in plain English"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
classifiers = [
|
|
9
|
+
"Programming Language :: Python :: 3",
|
|
10
|
+
"Programming Language :: Python :: 3.11",
|
|
11
|
+
"Programming Language :: Python :: 3.12",
|
|
12
|
+
"License :: OSI Approved :: MIT License",
|
|
13
|
+
"Operating System :: OS Independent",
|
|
14
|
+
]
|
|
7
15
|
dependencies = [
|
|
8
16
|
"typer[all]>=0.12",
|
|
9
17
|
"click>=8.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.1"
|
|
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
|
|
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
|
|
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
|