Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 6927742

Browse files
committed
Include the prompts in the pypi package
1 parent d5bc015 commit 6927742

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

aicodebot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.2.3"
1+
version = "0.2.5"

aicodebot/prompts/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
if __name__ == "__main__": # Only run setup if this is the main file (allows this file to be imported for __version__)
1414
setup(
15+
python_requires=">=3.9",
1516
name="aicodebot",
16-
packages=find_packages(),
1717
version=version,
1818
url="https://github.com/novara_ai/aicodebot",
1919
author="Nick Sullivan",
@@ -26,6 +26,10 @@
2626
"aicodebot = aicodebot.cli:cli",
2727
],
2828
},
29+
packages=find_packages(exclude=["tests", "tests.*"]),
30+
package_data={
31+
"aicodebot": ["prompts/*.yaml"],
32+
},
2933
classifiers=[
3034
"Development Status :: 3 - Alpha",
3135
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)