Skip to content
This repository was archived by the owner on Apr 22, 2024. It is now read-only.

Commit f65be3d

Browse files
authored
Merge pull request #585 from hdiogenes/master
Add Makefile instructions to build packages.
2 parents 41f6610 + 26d79ad commit f65be3d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
build: clean prepare
2+
python3.6 setup.py sdist
3+
ls -l dist/
4+
5+
clean:
6+
rm -rf build/ dist/ *.egg-info/
7+
8+
prepare:
9+
pip3.6 install --upgrade pip setuptools wheel twine
10+
11+
testupload: build
12+
twine upload -r pypitest dist/*
13+
14+
upload: build
15+
twine upload dist/*

0 commit comments

Comments
 (0)