We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 30bb5c2 + 642f9eb commit ba739c2Copy full SHA for ba739c2
setup.py
@@ -8,6 +8,9 @@
8
with open('README.md', encoding='utf-8') as f:
9
long_description = f.read()
10
11
+with open('requirements.txt', encoding='utf-8') as f:
12
+ install_requires = [line.strip() for line in f if line.strip() and not line.startswith('#')]
13
+
14
setup(
15
name='gpt-po-translator',
16
use_scm_version=True,
@@ -21,13 +24,7 @@
21
24
license='MIT',
22
25
packages=find_packages(),
23
26
include_package_data=True,
- install_requires=[
- 'polib==1.2.0',
- 'openai==1.58.1',
27
- 'python-dotenv==1.0.0',
28
- 'tenacity==9.0.0',
29
- 'pycountry==24.6.1'
30
- ],
+ install_requires=install_requires,
31
entry_points={
32
'console_scripts': [
33
'gpt-po-translator=python_gpt_po.po_translator:main',
0 commit comments