1
0
Fork 0

Adding upstream version 0.45+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 18:41:31 +01:00
parent b4efa209be
commit eb42e29864
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
35 changed files with 4489 additions and 0 deletions

37
Makefile Normal file
View file

@ -0,0 +1,37 @@
.PHONY: test
test:
poetry run pytest -x src/jinjax tests
.PHONY: lint
lint:
poetry run ruff check src/jinjax tests
.PHONY: coverage
coverage:
poetry run pytest --cov-config=pyproject.toml --cov-report html --cov jinjax src/jinjax tests
.PHONY: types
types:
poetry run pyright src/jinjax
.PHONY: install
install:
poetry install --with dev,test
poetry run pre-commit install
.PHONY: install.docs
install.docs:
pip install -e ../jinjax-ui/
pip install -e ../claydocs/
.PHONY: docs
docs:
cd docs && python docs.py
.PHONY: docs.build
docs.build:
cd docs && python docs.py build
.PHONY: docs.deploy
docs.deploy:
cd docs && ./deploy.sh