mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-11 07:30:55 +00:00
Add tool to make package for smoke test
This commit is contained in:
12
Makefile
12
Makefile
@ -27,7 +27,15 @@ protobufs: $(PY)
|
||||
%_pb2.py: %.proto
|
||||
protoc --python_out=. --mypy_out=. $<
|
||||
|
||||
.PHONY: clean
|
||||
clean-proto:
|
||||
rm -f $(PY) $(PYI)
|
||||
|
||||
clean:
|
||||
rm -f $(PY) $(PYI)
|
||||
find . -name '__pycache__' -exec rm -rf {} +
|
||||
rm -fr build/
|
||||
rm -fr dist/
|
||||
rm -fr *.egg-info
|
||||
|
||||
package: clean
|
||||
python setup.py sdist bdist_wheel
|
||||
python scripts/release/test_package.py
|
||||
|
||||
Reference in New Issue
Block a user