https://github.com/bukosabino/ta
Raw File
Tip revision: 488933b95edc3461a5a62c28596e7288055eda37 authored by Dario Lopez Padial on 11 November 2019, 18:35:15 UTC
update pypi version
Tip revision: 488933b
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