-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
103 lines (96 loc) · 2.35 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
96
97
98
99
100
101
102
103
[project]
name = "pyramidpy-tools"
version = "0.1.2"
description = "Toolkits for the PyramidPy Project"
requires-python = ">=3.10.10"
authors = [{name = "PyramidPy Team"}]
readme = "README.md"
dependencies = [
"pydantic-settings>=2.5.2",
"curl-cffi>=0.7.3",
"rich>=13.9.2",
"bs4>=0.0.2",
"supabase>=2.9.0",
"ucache>=0.1.4",
"pgvector>=0.3.5",
"psycopg>=3.2.3",
"scrapyscript>=1.1.5",
"tenacity>=8.5.0",
"asyncpg>=0.29.0",
"sqlalchemy>=2.0.35",
"apify-client>=1.8.1",
"asgiref>=3.8.1",
"sqlmodel>=0.0.22",
"langchain-community>=0.3.7",
"marvin>=2.3.8",
"chromadb>=0.5.18",
"sqlite-s3-query>=0.0.82",
"libsql-experimental>=0.0.41",
"prefect>=3.1.2",
"slack-sdk>=3.33.3",
"nanoid>=2.0.0",
"sqlalchemy-libsql>=0.1.0",
"sqlite-vec>=0.1.5",
"apprise>=1.9.0",
"redis>=5.2.1",
"fakeredis>=2.26.2",
"sse-starlette>=2.2.1",
"autoevals>=0.0.111",
"alembic>=1.14.0",
"alembic-utils>=0.8.5",
"sqlite-vss>=0.1.2",
"pandas>=2.2.3",
"python-ulid[pydantic]>=3.0.0",
"arq>=0.26.1",
"tweepy>=4.14.0",
"twitter-api-client>=0.10.22",
"pyjwt>=2.9.0",
"vecs>=0.4.5",
"tavily-python>=0.5.0",
"celery>=5.2.7",
"aiogram>=3.17.0",
"discord-py[voice]>=2.4.0",
"pynacl>=1.5.0",
"itsdangerous>=2.2.0",
"aiohttp>=3.11.2",
"duckdb>=1.1.3",
"sqlalchemy-utils>=0.41.2",
"dramatiq[redis,watch]>=1.17.1",
"celery-redbeat>=2.2.0",
"resend>=2.5.1",
"pytest-env>=1.1.5",
"pillow>=11.1.0",
"pydantic>=2.1.0",
"controlflow",
"mcp[cli]>=1.2.0",
"solana>=0.36.2",
"solders>=0.23.0",
"pygithub>=2.5.0",
"ragas>=0.2.11",
"fastembed>=0.2.7",
]
[tool.uv.sources]
controlflow = { git = "https://github.com/pyramidpy/Controlflow.git", tag = "v0.12.1" }
[project.optional-dependencies]
tests = [
"pytest>=7.0.0",
"pytest-asyncio>=0.18.2,!=0.22.0,<0.23.0",
"pytest-env>=0.8,<2.0",
"pytest-rerunfailures>=10,<14",
"pytest-sugar>=0.9,<2.0",
"pytest-timeout",
"pytest-xdist",
]
dev = [
"black>=23.0.0",
"ruff>=0.1.0",
]
# [project.scripts]
# pyramidpy-tools = "pyramidpy_tools:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
pythonpath = ["src"]