Skip to content

Commit

Permalink
Fix pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellLuo committed Jan 5, 2025
1 parent 1c1f6d1 commit de01b94
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
name = "coagent"
version = "0.0.1"
description = ""
authors = ["Your Name <[email protected]>"]
authors = [
{ name = "Your Name", email = "<[email protected]>" },
]
requires-python = ">=3.10"

[tool.poetry]
name = "coagent"
version = "0.0.1"
description = ""
authors = ["Your Name <[email protected]>"]
authors = [
{ name = "Your Name", email = "<[email protected]>" },
]

[tool.poetry.dependencies]
python = ">=3.10.0,<3.14"
Expand All @@ -33,10 +37,10 @@ exclude = [".cache"]

[tool.ruff]
# https://docs.astral.sh/ruff/configuration/
exclude = ['coagent/agents/aswarm']
exclude = ["coagent/agents/aswarm"]

[tool.ruff.format]
exclude = ['coagent/agents/aswarm']
exclude = ["coagent/agents/aswarm"]

[tool.ruff.lint]
select = [
Expand Down

0 comments on commit de01b94

Please sign in to comment.