forked from griptape-ai/griptape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (84 loc) · 1.84 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "griptape"
version = "0.19.4"
description = "Modular Python framework for LLM workflows, tools, memory, and data."
authors = ["Griptape <hello@griptape.ai>"]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/griptape-ai/griptape"
packages = [
{include = "griptape"}
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python-dotenv = ">=0.21"
openai = "^0.28"
cohere = ">=4"
attrs = ">=22"
jinja2 = ">=3.1"
jsonschema = ">=4"
marshmallow = ">=3"
marshmallow-enum = ">=1.5"
tiktoken = ">=0.3"
rich = ">=13"
stopit = "*"
transformers = "^4.30"
huggingface-hub = ">=0.13"
schema = ">=0.7"
pyyaml = ">=6"
fastapi = ">=0.80"
uvicorn = ">= 0.20"
python-decouple=">=3"
boto3 = "^1.28.57"
tenacity = ">=8.0"
numpy = ">=1"
pinecone-client = ">=2"
marqo = ">=1.1.0"
PyPDF2 = ">=3"
trafilatura = ">= 1.6"
anthropic = "^0.3.0"
sqlalchemy = "~=1.0"
sqlalchemy-redshift = "*"
snowflake-sqlalchemy = "^1.4.7"
pymongo= "*"
redis = "^4.6.0"
opensearch-py = "^2.3.1"
stringcase = "^1.2.0"
docker = "^6.1.3"
requests-aws4auth = "1.2.3"
pandas = "^2.1.0"
pgvector = "^0.2.3"
psycopg2-binary = "^2.9.9"
snowflake-connector-python = "^3.2"
cryptography = "^41.0.4"
dateparser = "^1.1.8"
mail-parser = "^3.15.0"
requests = "^2"
[tool.poetry.group.test.dependencies]
pytest = "~=7.1"
pytest-mock = "*"
mongomock = "*"
twine = ">=4"
moto = {extras = ["dynamodb"], version = "^4.1.8"}
pytest-xdist = "^3.3.1"
pytest-cov = "^4.1.0"
fuzzywuzzy = "^0.18.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.286"
black = "^23.7.0"
pyright = "^1.1.324"
[tool.black]
line-length=80
skip_magic_trailing_comma = true
[tool.ruff]
line-length=80
[tool.pyright]
include = ["griptape"]
exclude = [
"**/__pycache__",
]
pythonVersion = "3.9"
reportOptionalMemberAccess = "none"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"