[7fc5df]: / Makefile

Download this file

19 lines (14 with data), 446 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
lint:
pylint --disable=R,C deidentify scripts
lintall:
pylint deidentify scripts
lintci:
pylint --disable=R,C,W deidentify scripts || (echo "lintci failed with $$?"; exit 1)
test:
pytest --doctest-modules --cov-report html --cov=deidentify deidentify/ tests/
publish:
pip install --upgrade setuptools wheel twine
python setup.py verify
python setup.py sdist bdist_wheel
twine upload dist/*
rm -fr build dist .egg deidentify.egg-info