forked from boppreh/keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (15 loc) · 710 Bytes
/
Makefile
File metadata and controls
18 lines (15 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
test: tests
tests:
python2 -m coverage run -m keyboard._keyboard_tests
python2 -m coverage run -am keyboard._mouse_tests
python -m coverage run -am keyboard._keyboard_tests
python -m coverage run -am keyboard._mouse_tests
python -m coverage report && coverage3 html
build: tests keyboard setup.py README.md CHANGES.md MANIFEST.in
python ../docstring2markdown/docstring2markdown.py keyboard "https://github.com/boppreh/keyboard/blob/master" > README.md
find . \( -name "*.py" -o -name "*.sh" -o -name "* .md" \) -exec dos2unix {} \;
python setup.py sdist --format=zip bdist_wheel && twine check dist/*
release:
python make_release.py
clean:
rm -rfv dist build coverage_html_report keyboard.egg-info