https://github.com/bukosabino/ta
Raw File
Tip revision: ab9e8170f1ea32e80d8687a87a05023de5b5b158 authored by Dario Lopez Padial on 11 November 2019, 18:38:52 UTC
update pypi version
Tip revision: ab9e817
Makefile
init:
	pip install -r requirements.txt

lint:
	pycodestyle --max-line-length=119 ta && isort --check-only --recursive ta

isort-fix:
	isort --recursive ta

test:
	python -m unittest discover
back to top