-
Notifications
You must be signed in to change notification settings - Fork 118
/
setup.py
36 lines (35 loc) · 1.1 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
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name='lib_resume_builder_AIHawk',
version='0.1',
description='A package to generate AI-assisted resumes using GPT models',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='feder-cr',
author_email='[email protected]',
url='https://github.com/feder-cr/lib_resume_builder_AIHawk',
packages=find_packages(),
install_requires=[
'langchain',
'langchain-community',
'langchain-core',
'langchain-openai',
'langchain-text-splitters',
'langsmith',
'openai',
'regex==2024.7.24',
'selenium==4.9.1',
'webdriver-manager==4.0.2',
'inquirer',
'faiss-cpu',
'pydantic',
'pydantic[email]',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
include_package_data=True, # Include altri file indicati nel MANIFEST.in
)