Skip to content

Commit 7edbf19

Browse files
committed
Add Makefile
1 parent 04e18da commit 7edbf19

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
venv:
2+
python3 -mvenv venv
3+
venv/bin/pip install --upgrade pip setuptools wheel
4+
venv/bin/pip install twine
5+
6+
build: venv
7+
venv/bin/python setup.py sdist bdist_wheel --universal
8+
9+
deploy:
10+
venv/bin/twine upload dist/*

0 commit comments

Comments
 (0)