forked from MarcinKorcz101/mk-ai-agents
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (58 loc) · 1.69 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
66
67
68
[tool.poetry]
name = "among_them"
version = "0.1.0"
description = "This project tests and compares the persuasive abilities of large language models (LLMs) in a game-like environment simulating 'Among Us', where AI agents powered by LLMs interact, make decisions, and attempt to persuade each other."
authors = ["Marcin Korcz", "Andrii Chmutov", "Vasyl Korzavatykh", "Mateusz Idziejczak", "Mateusz Stawicki"]
readme = "README.md"
package-mode = true
packages = [
{ include = "among_them", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.11"
openai = "^1.52.2"
pydantic = "^2.9.2"
langchain = "^0.3.4"
langchain-community = "^0.3.3"
langchain-openai = "^0.2.3"
langchain-google-genai = "^2.0.1"
streamlit = "^1.39.0"
st-annotated-text = "^4.0.1"
plotly = "^5.24.1"
python-dotenv = "^1.0.1"
scikit-learn = "^1.5.2"
watchdog = "^6.0.0"
pandas = "^2.2.3"
krippendorff = "^0.8.0"
simpledorff = "^0.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
main = "scripts.main:main"
tournament = "scripts.tournament:main"
[tool.ruff]
preview = true
[tool.ruff.lint]
select = [
"ANN001", # Missing type annotation for function argument
"DOC", # Pydoclint
"D", # Pydocstyle
"E", # Pycodestyle
"F", # Pyflakes
"I", # Isort
"Q", # Quotes
]
ignore = [
"D1", # Missing docstrings
"D205",
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"