fix: set up pip install with package_data

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-03-05 21:53:44 +00:00
commit 13918b9758
2 changed files with 1457 additions and 27 deletions

1472
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -4,7 +4,7 @@ version = "0.0.1"
description = "A Python package with a built-in web application"
authors = ["Ibis Prevedello <ibiscp@gmail.com>"]
packages = [
{ include = "langflow"},
{ include = "langflow"}
]
include = ["langflow/frontend/build/*", "langflow/frontend/build/**/*"]
exclude = ["langflow/frontend/node_modules/*", "langflow/frontend/src/*"]
@ -18,11 +18,11 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
# openai = "^0.26.5"
# fastapi = "^0.91.0"
openai = "^0.26.5"
fastapi = "^0.91.0"
uvicorn = "^0.20.0"
# beautifulsoup4 = "^4.11.2"
# google-search-results = "^2.4.1"
# google-api-python-client = "^2.79.0"
beautifulsoup4 = "^4.11.2"
google-search-results = "^2.4.1"
google-api-python-client = "^2.79.0"
langchain = {git = "https://github.com/ibiscp/langchain.git", rev = "ibis"}
typer = "^0.7.0"