Skip to content

Commit

Permalink
Adding makefile for creating release
Browse files Browse the repository at this point in the history
  • Loading branch information
xiamaz committed Apr 4, 2020
1 parent 268ed7c commit 010951f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Build packaged wheel for flowCat.
build:
python3 setup.py sdist bdist_wheel

# Will load the current project tree as a python library. Useful for making
# changes to flowCat.
devel:
python3 setup.py devel

# Remove build directories created by build.
clean:
rm -r build
rm -r dist

0 comments on commit 010951f

Please sign in to comment.