diff --git a/setup.py b/setup.py index a80c8c1..4a5e44e 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,16 @@ from setuptools import setup, find_packages +with open('README.md', 'r', encoding='utf-8') as fh: + long_description = fh.read() + setup( name='synapsense', version='1.0.0', author='Richardson Lima', author_email='contato@richardsonlima.com.br', - description='synapsense (Python In-Context Learning) is a Python library designed to facilitate the implementation of In-Context Learning (ICL) with Large Language Models (LLMs).', - long_description=open('README.md').read(), + description='SynapSense (Python In-Context Learning) is a Python library designed to facilitate the implementation of In-Context Learning (ICL) with Large Language Models (LLMs).', + long_description=long_description, + long_description_content_type='text/markdown', # Specify content type as Markdown url='https://github.com/richardsonlima/synapsense.git', packages=find_packages(), install_requires=['openai==1.46.0', 'nltk', 'stopwords'], @@ -20,4 +24,4 @@ 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Software Development :: Libraries :: Python Modules', ], -) \ No newline at end of file +)