forked from AOSSIE-Org/Devr.AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (55 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
58 lines (55 loc) · 1.93 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
[project]
name = "devr-ai"
version = "0.1.0"
description = "Devr.AI is an AI-powered Developer Relations (DevRel) assistant designed to seamlessly integrate with open-source communities across platforms like Discord, Slack, GitHub, and Discourse."
authors = [{ name = "Kartik Bhatt", email = "kartikbhtt7@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"supabase (>=2.13.0,<3.0.0)",
"fastapi (>=0.115.11,<0.116.0)",
"py-cord (>=2.6.1,<3.0.0)",
"pygithub (>=2.6.1,<3.0.0)",
"slack-sdk (>=3.34.0,<4.0.0)",
"sentence-transformers (>=3.4.1,<4.0.0)",
"torch (>=2.6.0,<3.0.0)",
"pydantic (>=2.10.6,<3.0.0)",
"langgraph (>=0.4.7,<0.5.0)",
"langchain-tavily (>=0.2.0,<0.3.0)",
"tavily-python (>=0.7.3,<0.8.0)",
"pydantic-settings (>=2.9.1,<3.0.0)",
"langsmith (>=0.3.45,<0.4.0)",
"weaviate-client (>=4.15.0,<5.0.0)",
"langchain-google-genai (>=2.1.5,<3.0.0)",
"python-dotenv (>=1.1.1,<2.0.0)",
"aio-pika (>=9.5.5,<10.0.0)",
"uvicorn (>=0.38.0,<0.39.0)",
"ddgs (>=9.0.2,<10.0.0)",
"fastmcp>=2.11.3,<3.0.0",
"discord-py (>=2.4.0,<2.5.0)",
"graphrag-sdk (>=0.8.1,<0.9.0)",
"tree-sitter (>=0.25.2,<0.26.0)",
"validators (>=0.35.0,<0.36.0)",
"falkordb (>=1.2.0,<2.0.0)",
"tree-sitter-c (>=0.24.1,<0.25.0)",
"tree-sitter-python (>=0.25.0,<0.26.0)",
"tree-sitter-java (>=0.23.5,<0.24.0)",
"flask (>=3.1.2,<4.0.0)",
"multilspy @ git+https://github.com/AviAvni/multilspy.git@python-init-params",
"javatools (>=1.6.0,<2.0.0)",
"pygit2 (>=1.18.2,<2.0.0)",
"toml (>=0.10.2,<0.11.0)",
"websockets (>=15.0.1,<16.0.0)",
]
[tool.poetry]
packages = [{ include = "devr" }]
package-mode = false
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
flake8 = "^7.1.2"
autopep8 = "^2.3.2"
autoflake = "^2.3.1"
isort = "^6.0.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"