gptdiff 0.1.3__tar.gz → 0.1.4__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,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gptdiff
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A tool to generate and apply git diffs using LLMs
5
5
  Author: 255labs
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -36,7 +36,14 @@ def create_toolbox():
36
36
  "description": "Complete diff."
37
37
  }
38
38
  },
39
- description="Save the calculated diff as used in 'git apply'"
39
+ description="""Save the calculated diff as used in 'git apply'. Should include the file and line number. For example:
40
+ a/file.py b/file.py
41
+ --- a/file.py
42
+ +++ b/file.py
43
+ @@ -1,2 +1,2 @@
44
+ -def old():
45
+ +def new():
46
+ """
40
47
  )
41
48
  return toolbox
42
49
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gptdiff
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A tool to generate and apply git diffs using LLMs
5
5
  Author: 255labs
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='gptdiff',
5
- version='0.1.3',
5
+ version='0.1.4',
6
6
  description='A tool to generate and apply git diffs using LLMs',
7
7
  author='255labs',
8
8
  packages=find_packages(), # Use find_packages() to automatically discover packages
File without changes
File without changes
File without changes
File without changes