-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='synapsense',
version='1.0.3',
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', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/richardsonlima/synapsense.git',
packages=find_packages(include=['synapsense', 'synapsense.*']),
install_requires=['openai>=1.46.0', 'nltk', 'stopwords'],
license='BSD License',
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)