-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
# | ||
# Note: My setup uses the username/password stored in the ~/.pypirc file | ||
# | ||
|
||
test: | ||
./tests/test-rshell.sh | ||
|
||
# Creates the source distribution tarball | ||
sdist: | ||
python3 setup.py sdist | ||
|
||
# Registers this package on the pypi test server | ||
register-test: | ||
python3 setup.py register -r pypitest | ||
|
||
# Creates the distribution tarball and uploads to the pypi test server | ||
upload-test: | ||
rm -rf dist/* | ||
python3 setup.py sdist | ||
twine upload -u dhylands --repository-url https://test.pypi.org/legacy/ dist/* | ||
twine upload -r testpypi dist/* | ||
|
||
# Creates the distribution tarball and uploads to the pypi live server | ||
upload: | ||
#python3 setup.py sdist upload -r pypi | ||
rm -rf dist/* | ||
python3 setup.py sdist | ||
twine upload -u dhylands dist/* | ||
twine upload -r pypi dist/* | ||
|
||
# Registers this package on the pypi live server | ||
register: | ||
python3 setup.py register -r pypi | ||
requirements: | ||
pip install -r requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters