From 6c40b5ccae42d5dda09f2503f3211ef3db0744d2 Mon Sep 17 00:00:00 2001 From: better629 Date: Thu, 28 Mar 2024 18:24:14 +0800 Subject: [PATCH] pypi with non-py files --- MANIFEST.in | 3 +++ setup.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..292433f80 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +recursive-include metagpt/ext/stanford_town/prompts *.txt +recursive-include metagpt/ext/stanford_town/static_dirs *.csv +recursive-include metagpt/ext/stanford_town/static_dirs *.json \ No newline at end of file diff --git a/setup.py b/setup.py index f834b4c44..06274ee6d 100644 --- a/setup.py +++ b/setup.py @@ -87,4 +87,5 @@ setup( "metagpt=metagpt.software_company:app", ], }, + include_package_data=True, )