-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Fred Zimmerman <[email protected]>
- Loading branch information
Fred Zimmerman
committed
Sep 9, 2024
1 parent
a20372d
commit 2099b80
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='Codexes2Gemini', | ||
version='0.3.0.2', | ||
version='0.3.1.4', | ||
python_requires='>=3.11', | ||
description='Humans and AIs making books richer, more diverse, and more surprising.', | ||
url='https://github.com/fredzannarbor/Codexes2Gemini', | ||
|
@@ -16,12 +16,12 @@ | |
author='Fred_Zimmerman', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=find_packages(include=['Codexes2Gemini', 'Codexes2Gemini.*']), | ||
include_package_data=True, | ||
package_dir={'': 'Codexes2Gemini'}, # Tell setuptools where your packages are rooted | ||
packages=find_packages(where='Codexes2Gemini', exclude=['private'] | ||
), | ||
include_package_data=True, # Include all data files found within your packages | ||
package_data={ | ||
'Codexes2Gemini': ['resources/prompts/*.json', 'resources/images/*.jpg', 'resources/images/*.png', | ||
'resources/images/*.jpeg', 'resources/images/*.json', | ||
'resources/data_tables/collapsar/*.csv'], | ||
'Codexes2Gemini': ['*'], # Include everything within the 'Codexes2Gemini' directory | ||
}, | ||
install_requires=['streamlit', 'pymupdf', 'pypandoc', 'python-docx', 'google-generativeai', 'docx2txt', 'chardet', | ||
'google-cloud-texttospeech'], | ||
|