Skip to content

Commit 258c30d

Browse files
committed
Major refactor: breakdown epy.py script
into package project structure for easier development Squashed commit of the following: commit 01309b9 Author: Benawi Adha <[email protected]> Date: Sun Oct 2 21:15:04 2022 +0700 Fix missing objects commit aab2e77 Author: Benawi Adha <[email protected]> Date: Sun Oct 2 21:09:31 2022 +0700 Update README.md commit d4e9892 Author: Benawi Adha <[email protected]> Date: Sun Oct 2 21:07:28 2022 +0700 Add keywords in pyproject.toml commit 432055a Author: Benawi Adha <[email protected]> Date: Sun Oct 2 21:04:34 2022 +0700 Bump version and deprecete setup.py commit 51dd15a Author: Benawi Adha <[email protected]> Date: Sun Oct 2 20:56:38 2022 +0700 Formatting commit 81fb35e Author: Benawi Adha <[email protected]> Date: Sun Oct 2 20:55:08 2022 +0700 Fix speakers module commit 3b852e7 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:52:46 2022 +0700 Fix circular import commit 061e8a2 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:39:27 2022 +0700 Run formatting commit abc2d0a Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:39:00 2022 +0700 Update isort and black config in pyproject commit 5dc2e41 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:31:00 2022 +0700 Add app Config commit ed485a2 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:23:02 2022 +0700 Update debugpy script commit 68b0553 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:14:11 2022 +0700 Connect reader to main script commit 63c3dd1 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 20:11:17 2022 +0700 Implement reader commit ce5eec8 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 19:29:49 2022 +0700 Fix script in pyproject.toml commit 941e8e4 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 19:28:39 2022 +0700 Rename modules commit 5a3e7f7 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 19:28:20 2022 +0700 Rename tool method commit 3c0503f Author: Benawi Adha <[email protected]> Date: Sat Oct 1 19:27:03 2022 +0700 Add ebooks lib commit b5f71c3 Author: Benawi Adha <[email protected]> Date: Sat Oct 1 17:25:11 2022 +0700 Initial reorganization
1 parent d43533f commit 258c30d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4562
-79
lines changed

Makefile

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
.PHONY: tests
2-
.DEFAULT_GOAL := tests
2+
.DEFAULT_GOAL := check
3+
4+
check:
5+
mypy --follow-imports=silent src
6+
7+
format:
8+
isort src
9+
black src
310

411
debug:
5-
python -m debugpy --listen 5678 --wait-for-client -m epy
12+
python -m debugpy --listen 5678 --wait-for-client -m epy_reader
613

714
dev:
815
poetry install
@@ -16,5 +23,5 @@ coverage:
1623
python -m http.server -d htmlcov
1724

1825
release:
19-
python setup.py sdist bdist_wheel
26+
python -m build
2027
twine upload --skip-existing dist/*

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,5 @@ so line scrolling navigation will act as scrolling page and textwidth is not adj
134134
inside epy (default key: `R`).
135135

136136
- `v2022.2.5`: Fix process.join() issue for unstarted process.
137+
138+
- `v2022.10.2`: Major breakdown `epy.py` module into package structure for easier development.

epy_extras/__init__.py

-3
This file was deleted.

0 commit comments

Comments
 (0)