Initial upload of i18n-key-sync project
Some checks failed
CI / test (push) Failing after 11s

This commit is contained in:
2026-02-02 03:53:52 +00:00
parent 754e52a059
commit e32fc90700

25
setup.py Normal file
View File

@@ -0,0 +1,25 @@
from setuptools import setup, find_packages
setup(
name="i18n-key-sync",
version="1.0.0",
packages=find_packages(),
install_requires=[
"click>=8.0",
"pyyaml>=6.0",
"rich>=12.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1.0",
],
},
entry_points={
"console_scripts": [
"i18n-key-sync=i18n_key_sync.cli:main",
],
},
python_requires=">=3.9",
)