-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π§ Update bash shebang using env utility.
- Loading branch information
Showing
7 changed files
with
10 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ description = "π Generate awesome README files from the terminal, powered by | |
authors = ["Eli <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
homepage = "https://github.com/eli64s/README-AI" | ||
documentation = "https://github.com/eli64s/README-AI/blob/main/README.md" | ||
homepage = "https://github.com/eli64s/readme-ai" | ||
documentation = "https://github.com/eli64s/readme-ai/blob/main/README.md" | ||
keywords = [ | ||
"markdown", | ||
"readme", | ||
|
@@ -31,7 +31,6 @@ keywords = [ | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
pandas = "^1.4.0" | ||
black = "21.9b0" | ||
click = "8.0.1" | ||
colorlog = "^6.7.0" | ||
|
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,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
# Remove backup files and Python cache files | ||
find . -type f \( -name "*.py-e" \ | ||
|
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,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
set -eo pipefail | ||
|
||
|
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,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
# Example repository URLs | ||
repositories=( | ||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
setup( | ||
name="readme-ai", | ||
version="0.0.1", | ||
description="""π Generate awesome README markdown files from the terminal, powered by OpenAI's GPT language model APIs π«""", | ||
description="""π Generate awesome README.md documents from the terminal, powered by OpenAI's GPT language model APIs π«""", | ||
author="eli64s", | ||
author_email="[email protected]", | ||
url="https://github.com/eli64s/readme-ai", | ||
|
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,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
# Function to check if a conda environment exists | ||
function conda_env_exists() { | ||
|