We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c91f6 commit 6d6026cCopy full SHA for 6d6026c
MANIFEST.in
@@ -0,0 +1 @@
1
+recursive-include npcsh/npc_profiles *
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name="npcsh",
5
- version="0.1.3",
+ version="0.1.4",
6
packages=find_packages(exclude=["tests*"]),
7
install_requires=[
8
"jinja2",
@@ -13,6 +13,8 @@
13
"openai-whisper",
14
"pyaudio",
15
"pyttsx3",
16
+ "gtts",
17
+ "playsound",
18
],
19
entry_points={
20
"console_scripts": [
@@ -29,5 +31,9 @@
29
31
"Programming Language :: Python :: 3",
30
32
"License :: OSI Approved :: MIT License",
33
34
+ include_package_data=True,
35
+ package_data={
36
+ "npcsh": ["npc_profiles/*"],
37
+ },
38
python_requires=">=3.10",
39
)
0 commit comments