mirror of https://github.com/x89/Shreddit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
409 B
18 lines
409 B
help:
|
|
@echo "build - Build package"
|
|
@echo "install - Install package to local system"
|
|
@echo "clean - Clean built artifacts"
|
|
@echo "test - Run test suite with coverage"
|
|
|
|
build:
|
|
python setup.py build
|
|
python setup.py bdist_wheel
|
|
|
|
install:
|
|
pip install dist/*.whl --upgrade --force-reinstall --no-deps
|
|
python setup.py clean
|
|
|
|
clean:
|
|
find . -type f -name "*.pyc" -delete
|
|
rm -rf ./build ./dist ./*.egg-info
|