File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
setup (
13
13
name = 'gpt-po-translator' ,
14
14
use_scm_version = True , # Automatically fetch version from git tags
15
- setup_requires = ['setuptools-scm' ], # Ensure setuptools-scm is used during setup
15
+ setup_requires = ['setuptools-scm==8.1.0 ' ], # Ensure setuptools-scm is used during setup
16
16
author = 'Bram Mittendorff' ,
17
17
author_email = 'bram@pescheck.io' ,
18
18
description = 'A CLI tool for translating .po files using GPT models.' ,
23
23
packages = find_packages (),
24
24
include_package_data = True ,
25
25
install_requires = [
26
- 'polib' ,
27
- 'openai' ,
28
- 'python-dotenv'
29
- # Add other dependencies from requirements.txt
26
+ 'polib==1.2.0 ' ,
27
+ 'openai==v1.42.0 ' ,
28
+ 'python-dotenv==1.0.0' ,
29
+ 'tenacity==9.0.0' ,
30
30
],
31
31
entry_points = {
32
32
'console_scripts' : [
You can’t perform that action at this time.
0 commit comments