diff --git a/MANIFEST.in b/MANIFEST.in index f9bd145..e1d2d00 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include requirements.txt +include gptdeploy.cmd \ No newline at end of file diff --git a/gptdeploy.cmd b/gptdeploy.cmd new file mode 100644 index 0000000..b95df12 --- /dev/null +++ b/gptdeploy.cmd @@ -0,0 +1,2 @@ +@echo off +python -m src %* \ No newline at end of file diff --git a/setup.py b/setup.py index ab276cc..c789009 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read_requirements(): setup( name='gptdeploy', - version='0.18.5', + version='0.18.6', description='Use natural language interface to create, deploy and update your microservice infrastructure.', long_description=open('README.md', 'r', encoding='utf-8').read(), long_description_content_type='text/markdown', @@ -16,6 +16,7 @@ setup( url='https://github.com/jina-ai/gptdeploy', packages=find_packages(), install_requires=read_requirements(), + scripts=['gptdeploy.cmd'], entry_points={ 'console_scripts': [ 'gptdeploy = src:main', diff --git a/src/__init__.py b/src/__init__.py index de829eb..10a6303 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.18.5' +__version__ = '0.18.6' from src.cli import main \ No newline at end of file