Skip to content

Commit

Permalink
fix(cli): Add pygithub as requirement.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noahnc committed Dec 3, 2023
1 parent 814b2ee commit c30871c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@
version=__version__,
packages=find_packages(where=".", include=["infrapatch*"], exclude=["action*"]),
package_data={"infrapatch": ["core/utils/terraform/bin/*"]},
install_requires=["click~=8.1.7", "rich~=13.6.0", "pygohcl~=1.0.7", "GitPython~=3.1.40", "setuptools~=65.5.1", "semantic_version~=2.10.0", "pytablewriter~=1.2.0"],
install_requires=[
"click~=8.1.7",
"rich~=13.6.0",
"pygohcl~=1.0.7",
"GitPython~=3.1.40",
"setuptools~=65.5.1",
"semantic_version~=2.10.0",
"pytablewriter~=1.2.0",
"PyGithub~=2.1.1",
],
python_requires=">=3.11",
entry_points="""
[console_scripts]
Expand Down

0 comments on commit c30871c

Please sign in to comment.