27 lines
558 B
Python
27 lines
558 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="i18n-guardian",
|
|
version="1.0.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"click>=8.1.8",
|
|
"tree-sitter>=0.25.2",
|
|
"pyyaml>=6.0.3",
|
|
"rich>=14.3.2",
|
|
"pathspec>=1.0.4",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=9.0.2",
|
|
"pytest-cov>=6.1.2",
|
|
],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"i18n-guardian=i18n_guardian.cli:main",
|
|
],
|
|
},
|
|
python_requires=">=3.10",
|
|
)
|