-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.11 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
[tool.poetry]
name = "pandasai"
version = "3.0.0-beta.6"
description = "Chat with your database (SQL, CSV, pandas, mongodb, noSQL, etc). PandaAI makes data analysis conversational using LLMs (GPT 3.5 / 4, Anthropic, VertexAI) and RAG."
authors = ["Gabriele Venturi"]
license = "MIT"
readme = "README.md"
packages = [{include = "pandasai"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
python-dotenv = "^1.0.0"
pandas = "^2.0.3"
scipy = "1.10.1"
astor = "^0.8.1"
matplotlib = "<3.8,>=3.7.1"
pydantic = "^2.6.4"
duckdb = "^1.0.0"
pillow = "^10.1.0"
requests = "^2.31.0"
jinja2 = "^3.1.3"
numpy = "^1.17"
seaborn = "^0.12.2"
sqlglot = "^25.0.3"
pyarrow = "^14.0.1"
pyyaml = "^6.0.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
ruff = "^0.1.0"
codespell = "^2.2.0"
pytest = "^7.3.1"
pytest-mock = "^3.10.0"
pytest-env = "^0.8.1"
click = "^8.1.3"
coverage = "^7.2.7"
sourcery = "^1.11.0"
openai = "^1.60.0"
[tool.poetry.scripts]
pai = "pandasai.cli.main:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = ["tests_*"]