diff --git a/setup.py b/setup.py index 7ea3ea9..9afc85a 100644 --- a/setup.py +++ b/setup.py @@ -5,9 +5,9 @@ here = os.path.abspath(os.path.dirname(__file__)) with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: - DESCRIPTION = "\n" + fh.read() + long_description = "\n" + fh.read() -VERSION = '0.0.2' +VERSION = '0.0.3' DESCRIPTION = 'PyTextBin is a versatile Python library facilitating seamless conversion between text, binary, JSON, base64, xml and CSV formats with ease.' # Setting up @@ -15,11 +15,13 @@ name="PyTextBin", version=VERSION, author="Collins O. Odhiambo", - author_email="", + author_email="", description=DESCRIPTION, + long_description=long_description, + long_description_content_type="text/markdown", packages=find_packages(), - install_requires=['opencv-python', 'pyautogui', 'pyaudio'], - keywords=['python', 'csv', 'xmml', 'base64', 'text', 'json', 'binary'], + install_requires=[''], + keywords=['PyTextBin', 'csv', 'xmml', 'base64', 'text', 'json', 'binary'], classifiers=[ "Development Status :: 1 - Planning", "Intended Audience :: Developers",