-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rewrite Academic CLI for Python 3.11 (#121)
Changes - rewrite Academic CLI for Python v3.11 - based on user feedback, remove dependency on Hugo to be installed on user's PC - hence, the tool is now framework-agnostic again, so can be used with any website generator or even for writing Markdown-formatted books - remove deprecated features such as JS/CSS asset concatenation for offline sites - migrate from pipenv to Poetry for dependency management (latest best practice)
- Loading branch information
Showing
17 changed files
with
493 additions
and
804 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,14 +1,14 @@ | ||
.PHONY: black lint test publish | ||
|
||
format: | ||
isort --profile black . | ||
black . | ||
poetry run isort --profile black . | ||
poetry run black . | ||
|
||
lint: | ||
flake8 | ||
poetry run flake8 | ||
|
||
test: | ||
python -m pytest | ||
poetry run pytest | ||
|
||
publish: | ||
python setup.py publish | ||
poetry publish --build --dry-run |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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.