-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (94 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
105 lines (94 loc) · 2.2 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "memevolve"
version = "2.0.0"
description = "MemEvolve: Adaptive Memory System for AI Agents"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "MemEvolve Contributors"}
]
keywords = ["memory", "ai", "adaptive", "evolution", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24.0",
"openai>=2.15.0",
"faiss-cpu>=1.7.4",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"httpx>=0.25.0",
"requests>=2.31.0",
"tiktoken>=0.12.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-timeout>=2.2.0",
"pytest-asyncio>=0.21.0",
]
dev = [
"pytest>=8.0.0",
"pytest-timeout>=2.2.0",
"flake8>=7.3.0",
"autopep8>=2.3.0",
]
neo4j = [
"neo4j>=5.0.0",
]
gpu = [
"faiss-gpu>=1.7.4",
]
[project.urls]
Homepage = "https://github.com/thephimart/MemEvolve-API"
Repository = "https://github.com/thephimart/MemEvolve-API"
Issues = "https://github.com/thephimart/MemEvolve-API/issues"
[project.scripts]
memevolve-server = "memevolve.api.server:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
memevolve = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
timeout = 600
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v"
asyncio_mode = "auto"
markers = [
"asyncio: marks tests as async"
]
[tool.flake8]
max-line-length = 100
extend-ignore = ["E203", "W503"]
exclude = [
".git",
"__pycache__",
"build",
"dist",
".venv",
".eggs",
"*.egg",
]
[tool.autopep8]
max_line_length = 100
aggressive = 2
in-place = true
recursive = true