Files
regex-humanizer-cli/setup.py
7000pctAUTO 121a5957f6
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled
Initial upload: regex-humanizer-cli with CI/CD workflow
2026-02-06 01:09:43 +00:00

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