Skip to content

Commit

Permalink
Merge pull request #4 from pescheckit/feature_added-tenacity
Browse files Browse the repository at this point in the history
Added tenacity
  • Loading branch information
brammittendorff authored Dec 19, 2024
2 parents ffc2ac9 + 92e4522 commit ea6872d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand All @@ -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': [
Expand Down

0 comments on commit ea6872d

Please sign in to comment.