swh:1:snp:b1bc5cf54dab7987e9f85b6673e79b3b1d27ac15
Raw File
Tip revision: 419760dde64cf381e53788c6370c145fcc4003a6 authored by Arun Maiya on 21 June 2021, 20:13:43 UTC
updated docs
Tip revision: 419760d
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