Revision b6169894b904795a431391acd4508681d1c0f2e2 authored by Arun Maiya on 02 August 2022, 15:39:25 UTC, committed by Arun Maiya on 02 August 2022, 15:39:25 UTC
1 parent 6a2682c
Raw File
Makefile
.ONESHELL:
SHELL := /bin/bash
SRC = $(wildcard nbs/*.ipynb)

all: causalnlp docs

causalnlp: $(SRC)
	nbdev_build_lib
	touch causalnlp 

sync:
	nbdev_update_lib

docs_serve: docs
	cd docs && bundle exec jekyll serve

docs: $(SRC)
	nbdev_build_docs
	touch docs

test:
	nbdev_test_nbs

release: pypi conda_release
	nbdev_bump_version

conda_release:
	fastrelease_conda_package

pypi: dist
	twine upload --repository pypi dist/*

dist: clean
	python setup.py sdist bdist_wheel

clean:
	rm -rf dist
back to top