Files

29 lines
623 B
Python

from setuptools import setup, find_packages
setup(
name="nl2gherkin",
version="0.1.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"spacy==3.7.2",
"gherkin-official==23.0.0",
"click==8.1.7",
"pyyaml==6.0.1",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"mypy>=1.0.0",
],
},
entry_points={
"console_scripts": [
"nl2gherkin=nl2gherkin.main:main",
],
},
python_requires=">=3.9",
)