-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (61 loc) · 1.53 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
[tool.poetry]
name = "griptape_statemachine"
version = "0.1.0"
description = ""
authors = ["Collin Dutter <[email protected]>", "Kate Forsberg <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
griptape = "^0.32"
#griptape = {git = "https://github.com/griptape-ai/griptape.git", rev = "feature/assistants", extras = ["drivers-web-search-duckduckgo", "drivers-web-scraper-trafilatura"]}
python-statemachine = {extras = ["diagrams"], version = "^2.3.6"}
pyyaml = "^6.0.2"
schema = "^0.7.7"
python-dotenv = "^1.0.1"
graphviz = "^0.20.3"
gradio = "^4.44.0"
pydot = "^3.0.2"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.380"
ruff = "^0.6.4"
typos = "^1.25.0"
pre-commit = "^3.8.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"ALL"
]
ignore = [
"D",
"COM812", # missing-trailing-comma -- See https://github.com/astral-sh/ruff/issues/9216
"ANN003",
'T201',
"TD",
"FIX",
"E501"
]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["S101"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = true
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"attr".msg = "The attr module is deprecated, use attrs instead."
[tool.pyright]
venvPath = "."
venv = ".venv"
include = [
"griptape_statemachine"
]
exclude = [
"**/__pycache__",
]
pythonVersion = "3.11"
enableExperimentalFeatures = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"