Skip to content

Commit

Permalink
config new translations in setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Jun 24, 2024
1 parent 301a21a commit 9e7ca08
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@
'Operating System :: Unix',
],
python_requires='>=3.12',
py_modules=['src.main'],
py_modules=['gitman.main'],
entry_points={
'console_scripts': [
'gitman = src.main:app',
'gitman = gitman.main:app',
],
},
packages=find_packages(),
include_package_data=True,
package_data={
'': ['translations/*.yml'],
},
install_requires=["python-i18n"],
keywords='github cli projects dependencies',
)

0 comments on commit 9e7ca08

Please sign in to comment.