fix: package

This commit is contained in:
Florian Hönicke
2023-04-10 02:05:24 +02:00
parent 0f8d04fbbb
commit a1607cfa40
2 changed files with 5 additions and 2 deletions

View File

@@ -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',

View File

@@ -1 +1 @@
__version__ = '0.1.7'
__version__ = '0.18.1'