-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.06 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
[tool.poetry]
name = "constitutional-reasoning-engine"
version = "0.1.0"
description = "AI system that tests how different value frameworks maintain factual integrity"
authors = ["Chris Bradley <chris.bradley@example.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
litellm = "^1.52.0"
google-generativeai = "^0.8.0"
asyncio = "^3.4.3"
pandas = "^2.1.4"
matplotlib = "^3.8.2"
plotly = "^5.17.0"
python-dotenv = "^1.0.0"
pydantic = "^2.5.2"
jupyter = "^1.0.0"
numpy = "^1.25.2"
requests = "^2.31.0"
aiohttp = "^3.9.1"
anthropic = "^0.71.0"
seaborn = "^0.13.2"
scipy = "^1.11.0"
statsmodels = "^0.14.0"
pingouin = "^0.5.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
black = "^23.11.0"
flake8 = "^6.1.0"
mypy = "^1.7.1"
ipykernel = "^6.27.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true