Skip to content

Commit

Permalink
Merge pull request #16 from richardsonlima/develop
Browse files Browse the repository at this point in the history
fix setup
  • Loading branch information
richardsonlima authored Sep 24, 2024
2 parents 30ad427 + 8079408 commit be557a8
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
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'],
Expand All @@ -20,4 +24,4 @@
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
)

0 comments on commit be557a8

Please sign in to comment.