-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (56 loc) · 1.4 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
[tool.poetry]
name = "polymind"
version = "0.0.60" # Update this version before publishing to PyPI
description = "PolyMind is a customizable collaborative multi-agent framework for collective intelligence and distributed problem solving."
authors = ["TechTao"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
numpy = "1.26.0"
qdrant-client = "1.7.0"
pydantic = "^2.6.3"
python-dotenv = "^1.0.1"
aiohttp = "^3.9.3"
colorama = "^0.4.6"
tavily-python = "^0.3.3"
# Optional dependencies
openai = "^1.37.0"
faiss-cpu = { version = "1.8.0", optional = true }
anthropic = "^0.31.2"
pymilvus = { version = "2.3.7", optional = true }
rdflib = "^7.0.0"
flake8 = "^7.1.0"
pytest-cov = "^5.0.0"
filelock = "3.15.4"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
aioresponses = "^0.7.6"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.5.post1"
vulture = "^2.11"
flake8-pyproject = "^1.2.3"
coverage = "^7.6.0"
[tool.poetry.extras]
openai = ["openai"]
anthropic = ["anthropic"]
milvus = ["pymilvus"]
[tool.black]
line-length = 120
[tool.isort]
skip = ["__init__.py"]
[tool.flake8]
max-line-length = 120
exclude = ["__init__.py"]
ignore = ["Q000", "E203"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--cov=your_module_name",
"--cov-fail-under=67"
]