-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor APIClient to include repo details in file generation request
- Loading branch information
1 parent
7150f08
commit 551fdd5
Showing
4 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="penify-hook", | ||
name="penify-cli", | ||
version="0.1.0", | ||
packages=find_packages(), | ||
install_requires=[ | ||
|
@@ -11,15 +11,15 @@ | |
], | ||
entry_points={ | ||
"console_scripts": [ | ||
"penify-hook=penify_hook.main:main", | ||
"penify-cli=penify_hook.main:main", | ||
], | ||
}, | ||
author="Suman Saurabh", | ||
author_email="[email protected]", | ||
description="A post-commit hook that sends modified files and their contents to an API.", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/SingularityX-ai/penify-hook", | ||
url="https://github.com/SingularityX-ai/penify-cli", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
|