Files
i18n-guardian/setup.py
7000pctAUTO d800b6535e
Some checks failed
CI / test (3.10) (push) Failing after 15s
CI / test (3.11) (push) Failing after 13s
CI / test (3.12) (push) Failing after 15s
CI / lint (push) Successful in 14s
CI / build (push) Successful in 16s
fix: add missing tree-sitter dependency to setup.py
2026-02-02 17:35:25 +00:00

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",
)