From 384530b06b4d18e9c0c2285121614ae0f095b7e3 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 17:19:13 +0000 Subject: [PATCH] Initial upload: i18n-guardian v1.0.0 --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..06e7e3f --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages + +setup( + name="i18n-guardian", + version="1.0.0", + packages=find_packages(), + install_requires=[ + "click>=8.1.8", + "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", +)