diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8136bbc --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +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", +)