gptdiff 0.1.7__tar.gz → 0.1.8__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {gptdiff-0.1.7 → gptdiff-0.1.8}/PKG-INFO +2 -2
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff.egg-info/PKG-INFO +2 -2
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff.egg-info/requires.txt +1 -1
- {gptdiff-0.1.7 → gptdiff-0.1.8}/setup.py +2 -2
- {gptdiff-0.1.7 → gptdiff-0.1.8}/LICENSE.txt +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/README.md +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff/__init__.py +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff/gptdiff.py +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff.egg-info/SOURCES.txt +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff.egg-info/dependency_links.txt +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff.egg-info/entry_points.txt +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/gptdiff.egg-info/top_level.txt +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/setup.cfg +0 -0
- {gptdiff-0.1.7 → gptdiff-0.1.8}/tests/test_smartapply.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: gptdiff
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
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
|
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE.txt
|
11
11
|
Requires-Dist: openai>=1.0.0
|
12
12
|
Requires-Dist: tiktoken>=0.5.0
|
13
|
-
Requires-Dist: ai_agent_toolbox>=0.1.
|
13
|
+
Requires-Dist: ai_agent_toolbox>=0.1.11
|
14
14
|
Provides-Extra: test
|
15
15
|
Requires-Dist: pytest; extra == "test"
|
16
16
|
Requires-Dist: pytest-mock; extra == "test"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: gptdiff
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
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
|
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE.txt
|
11
11
|
Requires-Dist: openai>=1.0.0
|
12
12
|
Requires-Dist: tiktoken>=0.5.0
|
13
|
-
Requires-Dist: ai_agent_toolbox>=0.1.
|
13
|
+
Requires-Dist: ai_agent_toolbox>=0.1.11
|
14
14
|
Provides-Extra: test
|
15
15
|
Requires-Dist: pytest; extra == "test"
|
16
16
|
Requires-Dist: pytest-mock; extra == "test"
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='gptdiff',
|
5
|
-
version='0.1.
|
5
|
+
version='0.1.8',
|
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
|
@@ -12,7 +12,7 @@ setup(
|
|
12
12
|
install_requires=[
|
13
13
|
'openai>=1.0.0',
|
14
14
|
'tiktoken>=0.5.0',
|
15
|
-
'ai_agent_toolbox>=0.1.
|
15
|
+
'ai_agent_toolbox>=0.1.11'
|
16
16
|
],
|
17
17
|
extras_require={
|
18
18
|
'test': ['pytest', 'pytest-mock'],
|
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
|