-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (75 loc) · 1.74 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "superdapp-ai"
version = "0.1.0"
description = "AI agent platform with memory management, document processing, and function orchestration"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "SuperDappAI", email = "dev@superdapp.ai"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.11"
dependencies = [
"langchain==0.2.5",
"langchain-community==0.2.5",
"langchain-openai==0.1.9",
"langchain-qdrant==0.1.1",
"langchain-cohere==0.1.8",
"openai==1.34.0",
"llama-index==0.10.50",
"qdrant-client==1.9.0",
"pymongo==4.6.3",
"motor==3.3.1",
"fastapi==0.109.1",
"uvicorn==0.23.2",
"python-dotenv==1.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"black",
"isort",
"flake8",
]
[project.urls]
Homepage = "https://github.com/SuperDappAI/AI"
Repository = "https://github.com/SuperDappAI/AI"
Issues = "https://github.com/SuperDappAI/AI/issues"
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"