rshell/Makefile

27 wiersze
584 B
Makefile
Czysty Zwykły widok Historia

2024-01-29 14:53:11 +00:00
#
# Note: My setup uses the username/password stored in the ~/.pypirc file
#
2016-01-09 02:08:56 +00:00
test:
./tests/test-rshell.sh
# Creates the source distribution tarball
sdist:
python3 setup.py sdist
# Creates the distribution tarball and uploads to the pypi test server
upload-test:
rm -rf dist/*
python3 setup.py sdist
2024-01-29 14:53:11 +00:00
twine upload -r testpypi dist/*
2016-01-09 02:08:56 +00:00
# Creates the distribution tarball and uploads to the pypi live server
upload:
rm -rf dist/*
python3 setup.py sdist
2024-01-29 14:53:11 +00:00
twine upload -r pypi dist/*
2016-01-09 02:08:56 +00:00
# Registers this package on the pypi live server
2024-01-29 14:53:11 +00:00
requirements:
pip install -r requirements.txt