forked from nfcpy/ndeftool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements-dev.txt
27 lines (27 loc) · 947 Bytes
/
requirements-dev.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This is an annoteted version because I tend to forget.
#
# After 'git clone':
#
# virtualenv python-2
# python3 -m venv python-3
# source python-2/bin/activate
# python setup.py develop
# pip install -r requirements-dev.txt
# source python-3/bin/activate
# python setup.py develop
# pip install -r requirements-dev.txt
#
# Before 'git push':
#
# pip install --upgrade -r requirements-dev.txt
# tox -c tox.ini # or just tox
#
# Required packages and typical use:
#
pytest # run regression tests "py.test"
pytest-cov # check code coverage "py.test --cov ndeftool --cov-report html"
flake8 # syntax and style checks "flake8 src/ tests/"
tox # run tests before push "tox -c tox.ini"
sphinx # to create documentation "(cd docs && make html doctest)"
sphinx-rtd-theme # with the final layout "firefox docs/_build/html/index.html"
sphinxcontrib-programoutput