generated from seyLu/python-template
-
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.
* chore: port changes from test-1 * feat: project rename * chore: clean up deps * feat: build with hatchling, build and upload dist using twine * feat: move deps to src * feat: add entry point * feat: add deps to pyproject.toml and resolve path shenanigans * feat: add deps to pyproject.toml and resolve path shenanigans * chore: change color of project name in version callback * docs: update README * docs: add basic usage * docs: add advanced usage * feat: rename PERSONAL_ACCESS_TOKEN to just TOKEN * docs: add short -h command on setup and dump * docs: update alt text of icon * chore: revert version to 0.0.1 * feat: add dynamic versioning * docs: update basic usage * chore: move build-system up * feat: add bandit to ruff config * chore: reformat * chore: reformat * feat: add pre-commit prettier * feat: add ruff config flake8-builtins * feat: add ruff config flake8-builtins * feat: add more ruff rules and add HTTPError request exception handling * feat (pre-commit): deprecate black in favor of ruff format * chore: remove unecessary main function * ci (lint): deprecate black in favor of ruff
- Loading branch information
Showing
33 changed files
with
454 additions
and
322 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 |
---|---|---|
@@ -1,38 +1,15 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{js,py}] | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
# 2 space indentation | ||
[*.json, *.html] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# Tab indentation (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
# Indentation override for all JS under lib directory | ||
[lib/**.js] | ||
indent_style = space | ||
indent_size = 2 | ||
[!**/labels] | ||
insert_final_newline = true | ||
max_line_length = 88 | ||
|
||
# Matches the exact files either package.json or .travis.yml | ||
[{package.json,.travis.yml}] | ||
indent_style = space | ||
[*.{yaml,yml,json,toml}] | ||
indent_size = 2 |
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,3 +1,3 @@ | ||
GITHUB_PERSONAL_ACCESS_TOKEN=<your_github_personal_access_token> | ||
GITHUB_TOKEN=<your_github_personal_access_token> | ||
GITHUB_REPO_OWNER=<target_github_repository_owner> | ||
GITHUB_REPO_NAME=<target_github_repository_name> |
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
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
Oops, something went wrong.