-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
42 lines (34 loc) · 855 Bytes
/
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
[tool.poetry]
name = "yolopandas"
version = "0.0.6"
description = "Interact with Pandas objects via LLMs and langchain."
authors = []
license = "MIT"
readme = "README.md"
repository = "https://www.github.com/ccurme/yolopandas"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
ipython = "^8.8.0"
langchain = ">= 0.0.60, < 1"
openai = "^0"
pandas = "^1.4"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.lint.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^6.0.0"
[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"