-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from pescheckit/feature_added-tenacity
Added tenacity
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
setup( | ||
name='gpt-po-translator', | ||
use_scm_version=True, # Automatically fetch version from git tags | ||
setup_requires=['setuptools-scm'], # Ensure setuptools-scm is used during setup | ||
setup_requires=['setuptools-scm==8.1.0'], # Ensure setuptools-scm is used during setup | ||
author='Bram Mittendorff', | ||
author_email='[email protected]', | ||
description='A CLI tool for translating .po files using GPT models.', | ||
|
@@ -23,10 +23,10 @@ | |
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=[ | ||
'polib', | ||
'openai', | ||
'python-dotenv' | ||
# Add other dependencies from requirements.txt | ||
'polib==1.2.0', | ||
'openai==v1.42.0', | ||
'python-dotenv==1.0.0', | ||
'tenacity==9.0.0', | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
|