-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 833 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "llm-social-simulation"
version = "0.1.0"
description = "Multi-agent social simulation toolkit"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.7",
"python-dotenv>=1.2.1",
]
[dependency-groups]
dev = [
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.6",
"pre-commit>=3.8",
"mypy>=1.8",
]
[tool.setuptools.packages.find]
include = ["llm_social_simulation*"]
exclude = ["outputs*", "scripts*", "tests*", "notebooks*"]
[tool.pytest.ini_options]
testpaths = ["llm_social_simulation"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
[tool.mypy]
python_version = "3.12"
strict = false
warn_unused_configs = true
files = ["llm_social_simulation/models"]