forked from Anindyadeep/pandas-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (61 loc) · 1.94 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "pandasai"
version = "0.7.2"
description = "Pandas AI is a Python library that integrates generative artificial intelligence capabilities into Pandas, making dataframes conversational."
authors = ["Gabriele Venturi"]
license = "MIT"
readme = "README.md"
packages = [{include = "pandasai"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
python-dotenv = "^1.0.0"
pandas = "1.5.3"
astor = "^0.8.1"
openai = "^0.27.5"
ipython = "^8.13.1"
matplotlib = "^3.7.1"
google-generativeai = { version = "^0.1.0rc2", optional = true }
google-cloud-aiplatform = { version = "^1.26.1", optional = true }
langchain = { version = "^0.0.199", optional = true}
beautifulsoup4 = { version = "^4.12.2", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pre-commit = "^3.2.2"
ruff = "^0.0.220"
pytest = "^7.3.1"
pytest-mock = "^3.10.0"
pytest-env = "^0.8.1"
click = "^8.1.3"
[tool.poetry.group.extras.dependencies]
google-cloud-aiplatform = "^1.26.1"
[tool.poetry.extras]
google = ["google-generativeai"]
tests = ["numpy", "seaborn"]
langchain = ["langchain"]
bs4 = ["beautifulsoup4"]
google-cloud = ["google-cloud-aiplatform"]
[tool.poetry.group.whitelist.dependencies]
statsmodels = {version = "^0.14.0", optional = true}
scikit-learn = {version = "^1.2.2", optional = true}
seaborn = {version = "^0.12.2", optional = true}
plotly = {version = "^5.14.1", optional = true}
ggplot = {version = "^0.11.5", optional = true}
numpy = {version = "^1.17", optional = true}
scipy = {version = "^1.9.0", optional = true}
streamlit = { version = "^1.23.1", optional = true }
[tool.poetry.group.docs.dependencies]
mkdocs = "1.4.0"
mkdocstrings-python = "0.7.1"
markdown-include = "^0.6.0"
[tool.poetry.scripts]
pai = "pai.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = ["tests_*"]
[tool.pytest.ini_options]
env = [
"HUGGINGFACE_API_KEY=",
"OPENAI_API_KEY="
]