cowrie/Makefile

26 lines
300 B
Makefile
Raw Normal View History

# This `Makefile` is intended for Cowrie developers.
2019-05-04 16:34:16 +00:00
# Dummy target `all`
all:
2019-05-12 17:38:49 +00:00
test:
tox
2019-05-04 16:34:16 +00:00
build:
python setup.py build sdist bdist
docs:
make -C docs html
lint:
2019-05-12 17:38:49 +00:00
tox -e lint
clean:
rm -rf _trial_temp build dist
pip-upgrade:
pip install --upgrade -r requirements.txt
pip-check:
pip check