Skip to content

Commit 6d6026c

Browse files
committed
adding new version and trying to include profiles
1 parent 84c91f6 commit 6d6026c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include npcsh/npc_profiles *

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="npcsh",
5-
version="0.1.3",
5+
version="0.1.4",
66
packages=find_packages(exclude=["tests*"]),
77
install_requires=[
88
"jinja2",
@@ -13,6 +13,8 @@
1313
"openai-whisper",
1414
"pyaudio",
1515
"pyttsx3",
16+
"gtts",
17+
"playsound",
1618
],
1719
entry_points={
1820
"console_scripts": [
@@ -29,5 +31,9 @@
2931
"Programming Language :: Python :: 3",
3032
"License :: OSI Approved :: MIT License",
3133
],
34+
include_package_data=True,
35+
package_data={
36+
"npcsh": ["npc_profiles/*"],
37+
},
3238
python_requires=">=3.10",
3339
)

0 commit comments

Comments
 (0)