File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Personal Python utility collection application.
1414- Go to the root directory of this repo.
1515- The requirements.txt is empty. No dependency installations required.
1616- Development installation: run the ` pip install -e . ` command.
17- - Deployment installation: run the ` pip install . ` command.
17+ - ~~ Deployment installation: run the ` pip install . ` command.~~ (Temporarily unavailable.)
1818- You can now access the libraries by importing the ` lyc_pyutils ` package.
1919
2020# Using The Utilities
@@ -287,6 +287,30 @@ Python interactive shell demo use case:
287287>> >
288288```
289289
290+ # Testing
291+
292+ You can test this application by running ` python <this-repo>/test_all.py ` .
293+
294+ # Python Code Style
295+
296+ Follows [ PEP8] ( https://peps.python.org/pep-0008/ ) with the exceptions shown in the following VSCode ` settings.json ` code fragment.
297+
298+ ``` json
299+ {
300+ ...,
301+ "python.formatting.provider" : " autopep8" ,
302+ "python.formatting.autopep8Args" : [
303+ " --max-line-length=119"
304+ ],
305+ "python.linting.enabled" : true ,
306+ "python.linting.pycodestyleEnabled" : true ,
307+ "python.linting.pycodestyleArgs" : [
308+ " --max-line-length=119"
309+ ],
310+ ...
311+ }
312+ ```
313+
290314# Miscellaneous
291315## Developer's Notes :memo : And Warnings :warning :
292316### Notes :memo :
Original file line number Diff line number Diff line change 2121def main ():
2222 _setup (
2323 name = "lyc-pyutils" ,
24- version = "1.1.2 " ,
24+ version = "1.1.3 " ,
2525 description = "LYC's personal Python utilities." ,
2626 author = "Yucheng Liu" ,
2727 packages = _find_packages (),
You can’t perform that action at this time.
0 commit comments