-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (21 loc) · 684 Bytes
/
Copy pathMakefile
File metadata and controls
27 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
test:
uv run black .
uv run pytest prettymapp/tests --pylint --pylint-rcfile=pylintrc --mypy --mypy-ignore-missing-imports --durations=3
test[live]:
uv run black .
uv run pytest prettymapp/tests --pylint --pylint-rcfile=pylintrc --mypy --mypy-ignore-missing-imports --runlive --durations=5
setup:
uv sync --extra streamlit
app:
uv run streamlit run streamlit-prettymapp/app.py
package:
rm -rf dist
uv build
uvx twine check dist/*
upload:
uvx twine upload --skip-existing dist/*
clean:
find . -name "__pycache__" -exec rm -rf {} +
find . -name ".mypy_cache" -exec rm -rf {} +
find . -name ".pytest_cache" -exec rm -rf {} +
find . -name ".coverage" -exec rm -f {} +