Skip to content

Commit

Permalink
Tweaks setup.py.
Browse files Browse the repository at this point in the history
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.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'],
Expand Down

0 comments on commit 2099b80

Please sign in to comment.