Skip to content
This repository was archived by the owner on Jun 29, 2021. It is now read-only.

Commit 542e624

Browse files
author
Devin McGloin
authored
Merge pull request #4 from devinmcgloin/makefile
Added makefile to make deploys easier
2 parents 7744952 + d9853e0 commit 542e624

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dist:
2+
python setup.py sdist bdist_wheel
3+
4+
upload-test:
5+
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
6+
7+
8+
upload:
9+
twine upload dist/*

0 commit comments

Comments
 (0)