-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "smolswarms"
version = "0.1.0"
description = "Spawn and orchestrate autonomous AI agent swarms that actually do be hitting different fr fr"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Gokhan Guney", email = "[email protected]" },
]
dependencies = [
"pydantic>=2.0.0",
"rich>=13.9.4",
"typer>=0.9.0",
"PyGithub>=2.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.1.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.5.0",
"mypy>=1.0.0",
"pre-commit>=3.6.0",
]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
[tool.ruff.lint.isort]
force-single-line = true
combine-as-imports = true
known-first-party = ["smolswarms"]
[tool.mypy]
python_version = "3.10"
disallow_untyped_defs = true
check_untyped_defs = true
strict_optional = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.dependencies]
smolagents = { git = "https://github.com/UltraInstinct0x/smolagents.git" }