From 8079408496f4ec2c96516e1a201ceefbf27c747c Mon Sep 17 00:00:00 2001 From: Richardson Lima Date: Tue, 24 Sep 2024 00:34:10 -0300 Subject: [PATCH] fix setup --- setup.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 +)