feat: move project from poetry to pdm, rewrite from scratch and add
basic `notebooks`, `edit` and `show` commands
This commit is contained in:
parent
d9eb99b72e
commit
d3ad87211e
35 changed files with 1309 additions and 1434 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
linters:
|
||||
pre-commit run --all-files --color always
|
||||
|
||||
.PHONY: tests
|
||||
tests:
|
||||
pdm run pytest --cov=halig -vv tests --report-log reportlog.json
|
||||
pdm run coverage html
|
||||
pdm run coverage xml
|
||||
|
||||
.PHONY: dist
|
||||
dist:
|
||||
pdm build
|
||||
|
||||
publish:
|
||||
pdm publish -u $(ROBOCES_REGISTRY_USERNAME) -P $(ROBOCES_REGISTRY_PASSWORD) -r https://git.roboces.dev/api/packages/catalin/pypi
|
||||
Loading…
Add table
Add a link
Reference in a new issue