diff options
Diffstat (limited to 'moonv4/moon_utilities/README.md')
-rw-r--r-- | moonv4/moon_utilities/README.md | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/moonv4/moon_utilities/README.md b/moonv4/moon_utilities/README.md deleted file mode 100644 index bbc1d458..00000000 --- a/moonv4/moon_utilities/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# Moon Python Utilities Package -This package contains the core module for the Moon project. -It is designed to provide authorization feature to all OpenStack components. - -For any other information, refer to the parent project: - - https://git.opnfv.org/moon - -moon_utilities is a common Python lib for other Moon Python packages - -## Build -### Build Python Package -```bash -cd ${MOON_HOME}/moonv4/moon_utilities -python3 setup.py sdist bdist_wheel -``` - -### Push Python Package to PIP -```bash -cd ${MOON_HOME}/moonv4/moon_utilities -gpg --detach-sign -u "${GPG_ID}" -a dist/moon_utilities-X.Y.Z-py3-none-any.whl -gpg --detach-sign -u "${GPG_ID}" -a dist/moon_utilities-X.Y.Z.tar.gz -twine upload dist/moon_db-X.Y.Z-py3-none-any.whl dist/moon_utilities-X.Y.Z-py3-none-any.whl.asc -twine upload dist/moon_db-X.Y.Z.tar.gz dist/moon_uutilities-X.Y.Z.tar.gz.asc -``` - -## Test -### Python Unit Test -launch Docker for Python unit tests -```bash -cd ${MOON_HOME}/moonv4/moon_utilities -docker run --rm --volume $(pwd):/data wukongsun/moon_python_unit_test:latest -``` |