- Add regex parser, translator, and test generator - Add CLI with explain, test, interactive commands - Add multi-flavor support (PCRE, JavaScript, Python) - Add Gitea Actions CI workflow - Add comprehensive README documentation
24 lines
568 B
Python
24 lines
568 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="regex-humanizer-cli",
|
|
version="1.0.0",
|
|
packages=find_packages(where="."),
|
|
package_dir={"": "."},
|
|
install_requires=[
|
|
"click>=8.0",
|
|
"regex>=2023.0",
|
|
"parsimonious>=0.10.0",
|
|
"pygments>=2.15",
|
|
],
|
|
extras_require={
|
|
"dev": ["pytest>=7.0", "pytest-cov>=4.0", "black>=23.0", "ruff>=0.1.0"],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"regex-humanizer=regex_humanizer.cli:main",
|
|
],
|
|
},
|
|
python_requires=">=3.9",
|
|
)
|