forked from natnew/100-Python-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.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
[tool.poetry]
name = "100-ai-native-projects"
version = "0.1.0"
description = "A pattern library for AI-native system design"
authors = ["Natasha Newbold <natnew@example.com>"]
readme = "README.md"
packages = [{include = "shared"}]
[tool.poetry.dependencies]
python = "^3.11"
openai = "^1.10.0"
anthropic = "^0.18.0"
pydantic = "^2.6.0"
tenacity = "^8.2.0"
opentelemetry-api = "^1.22.0"
opentelemetry-sdk = "^1.22.0"
python-dotenv = "^1.0.0"
numpy = "^1.26.0"
pandas = "^2.2.0"
tiktoken = "^0.5.0"
colorama = "^0.4.6"
rich = "^13.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.23.0"
black = "^24.1.0"
ruff = "^0.2.0"
mypy = "^1.8.0"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
"Tier-1-Agent-Foundations/*/tests",
"Tier-2-Multi-Agent-Architectures/*/tests",
"Tier-3-Evaluation-Safety-Governance/*/tests",
]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true