forked from sinaptik-ai/pandas-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1 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
[tool.poetry]
name = "pandasai"
version = "0.2.15"
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"
python-dotenv = "^1.0.0"
pandas = "^2.0.1"
astor = "^0.8.1"
openai = "^0.27.5"
ipython = "^8.13.1"
matplotlib = "^3.7.1"
google-generativeai = "^0.1.0rc2"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pre-commit = "^3.2.2"
pylint = "^2.17.3"
pytest = "^7.3.1"
isort = "^5.12.0"
pytest-mock = "^3.10.0"
pytest-env = "^0.8.1"
click = "^8.1.3"
[tool.poetry.group.docs.dependencies]
mkdocs = "1.3.0"
mkdocstrings-python = "0.7.1"
markdown-include = "^0.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint]
ignore = "tests_*"
[tool.pytest.ini_options]
env = [
"HUGGINGFACE_API_KEY=",
"OPENAI_API_KEY="
]