Skip to content

Commit

Permalink
[ADD] Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
KennBro committed Jan 28, 2024
1 parent 3bd0e95 commit 862674e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions backend/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages

setup(
name='lia',
version='1.0.0',
description='Librería de IA para abogados',
author='',
author_email='[email protected]',
url='https://gitlab.com/legalia/backend.git',
packages=find_packages(),
classifiers=[
'Development Status :: 1 - Development/Stable',
'Intended Audience :: Developers',
'License :: TBD',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'langchain',
'pinecone-client',
'typing',
],
)

0 comments on commit 862674e

Please sign in to comment.