This repository was archived by the owner on Feb 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
85 lines (77 loc) · 2.24 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "emergent-learning-framework"
dynamic = ["version"]
description = "Emergent Learning Framework - Institutional knowledge for AI agents"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "ELF Contributors"}
]
keywords = ["ai", "agents", "learning", "coordination", "workflow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"anthropic>=0.18.0",
"numpy>=1.21.0",
"aiohttp>=3.8.0",
"scipy>=1.7.0",
]
[project.optional-dependencies]
reranking = [
"sentence-transformers>=2.2.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"mypy>=1.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.json", "*.sql"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::pytest.PytestUnraisableExceptionWarning",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"concurrent: marks tests with threading/async",
"database: marks tests requiring database",
"integration: marks integration tests",
"stress: marks stress/load tests",
]
[tool.setuptools_scm]
# Automatically derive version from git tags (e.g., v0.6.3 -> 0.6.3)
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.mypy]
# Mypy configuration will be in mypy.ini for better organization
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true