Adding upstream version 0.15.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
0184169650
commit
c6da052ee9
47 changed files with 6799 additions and 0 deletions
21
Makefile
Normal file
21
Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
.PHONY: check
|
||||
check:
|
||||
ruff format .
|
||||
ruff check . --fix
|
||||
mypy
|
||||
pytest
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
ruff format .
|
||||
ruff check . --fix
|
||||
mypy
|
||||
|
||||
.PHONY: serve
|
||||
serve:
|
||||
textual run --dev -c python -m textual_textarea
|
||||
|
||||
profiles: .profiles/startup.html
|
||||
|
||||
.profiles/startup.html: src/scripts/profile_startup.py pyproject.toml $(wildcard src/textual_textarea/**/*.py)
|
||||
pyinstrument -r html -o .profiles/startup.html "src/scripts/profile_startup.py"
|
Loading…
Add table
Add a link
Reference in a new issue