From be83af26f033ba493a166c9ea00c1220a6c8d812 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Mon, 25 Dec 2023 00:25:46 +0530 Subject: [PATCH] fixed publish to pypi --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 036045d8..489c1a19 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,14 @@ from setuptools import setup, find_packages +# Get the long description from the README file +with open("README.md") as f: + long_description = f.read() + setup( name="py-jelastic", - version="0.0.2", + version="0.0.3", description="Jelastic API client library", + long_description=long_description, url="https://github.com/Onemind-Services-LLC/py-jelastic", author="Abhimanyu Saharan", author_email="asaharan@onemindservices.com",