forked from dhylands/rshell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (22 loc) · 699 Bytes
/
Makefile
File metadata and controls
27 lines (22 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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/*
# 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/*
# Registers this package on the pypi live server
register:
python3 setup.py register -r pypi