scriptmonkey 0.1.0__tar.gz → 0.1.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.
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scriptmonkey
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A Python package that automatically fixes errors in your code using OpenAI's GPT API
5
5
  Home-page: https://github.com/lukerbs/CodeMonkey
6
6
  Author: Luke Kerbs
7
7
  Author-email: LDK.kerbs@gmail.com
8
8
  License: MIT
9
+ Keywords: openai,GPT,AI,code error fixing,code automation,GPT API,error correction,code assistant,AI coding tools,code monkey,script monkey,automation,development tools,python tools,code analysis,machine learning
9
10
  Classifier: Programming Language :: Python :: 3
10
11
  Classifier: License :: OSI Approved :: MIT License
11
12
  Classifier: Operating System :: OS Independent
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scriptmonkey
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A Python package that automatically fixes errors in your code using OpenAI's GPT API
5
5
  Home-page: https://github.com/lukerbs/CodeMonkey
6
6
  Author: Luke Kerbs
7
7
  Author-email: LDK.kerbs@gmail.com
8
8
  License: MIT
9
+ Keywords: openai,GPT,AI,code error fixing,code automation,GPT API,error correction,code assistant,AI coding tools,code monkey,script monkey,automation,development tools,python tools,code analysis,machine learning
9
10
  Classifier: Programming Language :: Python :: 3
10
11
  Classifier: License :: OSI Approved :: MIT License
11
12
  Classifier: Operating System :: OS Independent
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="scriptmonkey",
5
- version="0.1.0",
5
+ version="0.1.1", # Incremented version
6
6
  description="A Python package that automatically fixes errors in your code using OpenAI's GPT API",
7
7
  long_description=open("README.md", "r").read(),
8
8
  long_description_content_type="text/markdown",
@@ -18,6 +18,24 @@ setup(
18
18
  "License :: OSI Approved :: MIT License",
19
19
  "Operating System :: OS Independent",
20
20
  ],
21
+ keywords=[
22
+ "openai",
23
+ "GPT",
24
+ "AI",
25
+ "code error fixing",
26
+ "code automation",
27
+ "GPT API",
28
+ "error correction",
29
+ "code assistant",
30
+ "AI coding tools",
31
+ "code monkey",
32
+ "script monkey",
33
+ "automation",
34
+ "development tools",
35
+ "python tools",
36
+ "code analysis",
37
+ "machine learning",
38
+ ], # Added relevant keywords
21
39
  package_data={"scriptmonkey.openai_client": ["prompts/*.txt"]},
22
40
  include_package_data=True,
23
41
  )
File without changes
File without changes