Skip to content

Commit c68cbef

Browse files
committed
fix github actions
1 parent dd8560e commit c68cbef

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

pyproject.toml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
11
[build-system]
2-
requires = ["poetry-core"]
2+
requires = ["poetry-core>=1.0.0"]
33
build-backend = "poetry.core.masonry.api"
44

5+
[tool.poetry]
6+
packages = [{include = "temporal_awareness_mcp", from = "src"}]
7+
8+
[tool.poetry.group.dev.dependencies]
9+
pytest = "^8.2.2"
10+
ruff = "^0.5.0"
11+
httpx = "^0.28.1"
12+
pytest-asyncio = "^0.23.7"
13+
14+
515
[project]
616
name = "temporal-awareness-mcp"
717
version = "0.1.0"
8-
description = "A robust MCP server that gives language models temporal awareness and time calculation abilities."
18+
description = "A robust MCP server that gives language models temporal awareness and calculation abilities."
919
authors = [
1020
{ name = "Your Name", email = "[email protected]" },
1121
]
1222
license = { text = "MIT" }
1323
readme = "README.md"
1424
requires-python = "^3.12"
25+
1526
dependencies = [
1627
"fastmcp>=2.3.2",
1728
"pydantic>=2.8.2",
@@ -20,22 +31,17 @@ dependencies = [
2031
"tzdata",
2132
]
2233

23-
[project.scripts]
24-
server = "temporal_awareness_mcp.main:app"
25-
26-
[tool.poetry]
27-
packages = [{include = "temporal_awareness_mcp", from = "src"}]
28-
29-
[tool.poetry.group.dev.dependencies]
30-
pytest = "^8.2.2"
31-
ruff = "^0.5.0"
32-
httpx = "^0.28.1"
33-
pytest-asyncio = "^0.23.7"
34+
[project.urls]
35+
Homepage = "https://github.com/pmbstyle/temporal-awareness-mcp"
36+
Repository = "https://github.com/pmbstyle/temporal-awareness-mcp"
3437

3538
[tool.ruff]
3639
line-length = 88
3740
target-version = "py312"
3841

42+
[tool.ruff.lint]
43+
select = ["E", "W", "F", "I", "UP", "C4", "B"]
44+
3945
[tool.ruff.format]
4046
quote-style = "double"
4147

0 commit comments

Comments
 (0)