-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (25 loc) · 568 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (25 loc) · 568 Bytes
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
28
29
30
31
32
refresh: clean build install lint
build:
python setup.py build
install:
python setup.py install
build_dist:
make clean
python setup.py sdist bdist_wheel
pip install dist/*.whl
make test
release:
python -m twine upload dist/*
lint:
flake8 src/ tests/ --exclude tests/data/ --count --max-line-length=127 --ignore=W503
test:
python -m unittest
clean:
rm -rf __pycache__
rm -rf tests/__pycache__
rm -rf src/watchpoints/__pycache__
rm -rf build
rm -rf dist
rm -rf watchpoints.egg-info
rm -rf src/watchpoints.egg-info
pip uninstall -y watchpoints