diff --git a/setup.py b/setup.py index 8d362d2..3f01069 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import setup, find_packages +import sys +from os.path import dirname, abspath +sys.path.append(dirname(abspath(__file__))) def read_requirements(): with open('requirements.txt', 'r', encoding='utf-8') as f: return [line.strip() for line in f.readlines() if not line.startswith('#')] @@ -7,7 +10,7 @@ def read_requirements(): setup( name='gptdeploy', - version='0.1.7', + version='0.18.1', 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', diff --git a/src/__init__.py b/src/__init__.py index 0876fc4..c525e45 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ -__version__ = '0.1.7' \ No newline at end of file +__version__ = '0.18.1' \ No newline at end of file