Initial upload: regex-humanizer-cli with CI/CD workflow
This commit is contained in:
23
setup.py
Normal file
23
setup.py
Normal file
@@ -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",
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user