Skip to content

Commit

Permalink
Manifest added (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakethekoenig authored Oct 12, 2023
1 parent f6418a8 commit fa81032
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include requirements.txt
include dev-requirements.txt
include README.md
include LICENSE
include mentat/default_config.json
include mentat/prompts/*
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="mentat",
version="0.1.16",
version="0.1.17",
python_requires=">=3.10",
packages=find_packages(),
install_requires=[
Expand All @@ -19,9 +19,6 @@
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
package_data={
"mentat": ["default_config.json", "prompts/*.txt"],
},
entry_points={
"console_scripts": [
"mentat=mentat.terminal.client:run_cli",
Expand All @@ -31,6 +28,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache-2.0",
include_package_data=True,
extras_require={
"dev": [
str(r)
Expand Down

0 comments on commit fa81032

Please sign in to comment.