Skip to content

Commit eecd5fb

Browse files
committed
main branch merged rel branch
2 parents 6507452 + 282d090 commit eecd5fb

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
def 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(),

0 commit comments

Comments
 (0)