diff --git a/Makefile b/Makefile index daa84cdf68811adf5d6af1132a452cc83d7c6433..4f2f83bbecd0f117877496510e61bcc5975135e4 100644 --- a/Makefile +++ b/Makefile @@ -72,8 +72,8 @@ dist: python setup.py sdist bdist_wheel .PHONY: publish -publish: - PATH=~/.local/bin:${PATH} twine upload dist/* +publish: clean dist + PATH=~/.local/bin:${PATH} twine upload dist/* .PHONY: version version: diff --git a/README.md b/README.md index 170df3959b83af7b5ac0f205aec437a49aed109a..ae220c2a301ab4c42ec0f5ad5b0ece11e9e88004 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # code-generator -![](https://img.shields.io/badge/pypi-0.0.2-brightgreen) +![](https://img.shields.io/badge/pypi-0.0.3-brightgreen) ![](https://img.shields.io/badge/build-passing-brightgreen) ![](https://img.shields.io/badge/python-3.7+-brightgreen) diff --git a/VERSION b/VERSION index 7bcd0e3612da7c517106f9b581a8beb53d4b0a97..6812f8122ef3f5b8c0b989d505b6c2820eee5e77 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.2 \ No newline at end of file +0.0.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 5ddb6c1d5d37cf5a1fb44ca5a03232948030148a..30b8244e7844408cd3d76c89cb302f569a4a26b8 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,8 @@ with open('./requirements.txt', 'r+') as f: with open('./README.md', 'r+') as f: long_description = f.read() + long_description = 'full document please check the github: ' \ + 'https://www.github.com/wj-Mcat/code-generator' setup( name='code-generator',