Skip to content

Commit 35c9358

Browse files
authored
Toreleon fix dependencies (#25)
* Enhance test for 'init' command to skip config creation when it exists * Refactor dependencies in pyproject.toml to separate optional dependencies and clean up main dependencies section
1 parent 177d37c commit 35c9358

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
]
24-
dependencies = [
25-
"python-dotenv>=1.0.0,<2.0.0",
26-
"build (>=1.2.2.post1,<2.0.0)",
27-
"twine (>=6.1.0,<7.0.0)",
28-
]
24+
dependencies = []
2925
requires-python = "<4.0,>=3.10"
3026

3127
[project.optional-dependencies]
28+
dev = [
29+
"build>=1.2.2.post1,<2.0.0",
30+
"twine>=6.1.0,<7.0.0",
31+
]
3232
openai = [
3333
"openai-agents (>=0.0.9,<0.0.10)",
3434
]
@@ -54,5 +54,4 @@ mcphub = "mcphub.cli.commands:main"
5454

5555
[tool.poetry.group.dev.dependencies]
5656
pytest = "^8.3.5"
57-
pytest-asyncio = "^0.26.0"
58-
57+
pytest-asyncio = "^0.26.0"

0 commit comments

Comments
 (0)