forked from crestalnetwork/intentkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (80 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
86 lines (80 loc) · 2.04 KB
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
[tool.poetry]
name = "intentkit"
version = "0.1.0"
description = "Intent-based AI Agent Platform"
authors = ["Ruihua <ruihua@crestal.network>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.6"
uvicorn = "^0.34.0"
gunicorn = "^23.0.0"
pydantic = "*"
pydantic-settings = "^2.7.0"
sqlmodel = "^0.0.22"
sqlalchemy = "^2.0.36"
psycopg = "^3.2.3"
psycopg2 = "*"
psycopg-pool = "^3.2.4"
alembic = "^1.14.0"
pgvector = "^0.2.5"
langchain = "^0.3.13"
langchain-core = "^0.3.28"
langchain-openai = "^0.2.11"
langchain-postgres = "^0.0.12"
langchain-community = "^0.3.13"
langgraph = "^0.2.56"
langgraph-checkpoint = "^2.0.8"
langgraph-checkpoint-postgres = "^2.0.8"
openai = "^1.57.0"
cdp-langchain = "^0.0.8"
cdp-sdk = "^0.12.0"
cdp-agentkit-core = "^0.0.6"
tweepy = "^4.14.0"
python-dotenv = "^1.0.1"
APScheduler = "^3.11.0"
anyio = "^4.7.0"
slack-sdk = "^3.34.0"
requests = "^2.32.3"
aws-secretsmanager-caching = "^1.1.3"
botocore = "^1.35.90"
aiogram = "^3.16.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
ignore_missing_imports = true
explicit_package_bases = true
namespace_packages = true
mypy_path = "."
[tool.pylint]
max-line-length = 88 # Match black's default
disable = [
"C0111", # missing-docstring
"C0103", # invalid-name
"C0114", # missing-module-docstring
"C0115", # missing-class-docstring
"C0116", # missing-function-docstring
"R0903", # too-few-public-methods
"R0913", # too-many-arguments
]
good-names = ["db", "id", "q"]
ignore = ["CVS", ".git", ".pytest_cache", "__pycache__"]
ignore-patterns = ["test_.*?py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"