Skip to content

Commit ce97a40

Browse files
committed
update poetry
1 parent c68cbef commit ce97a40

File tree

2 files changed

+18
-30
lines changed

2 files changed

+18
-30
lines changed

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 17 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,35 @@
1-
[build-system]
2-
requires = ["poetry-core>=1.0.0"]
3-
build-backend = "poetry.core.masonry.api"
4-
51
[tool.poetry]
2+
name = "temporal-awareness-mcp"
3+
version = "0.1.0"
4+
description = "A robust MCP server that gives language models temporal awareness and calculation abilities."
5+
authors = ["pmbstyle <[email protected]>"]
6+
license = "MIT"
7+
readme = "README.md"
68
packages = [{include = "temporal_awareness_mcp", from = "src"}]
79

10+
[tool.poetry.dependencies]
11+
python = "^3.12"
12+
fastmcp = ">=2.3.2"
13+
pydantic = ">=2.8.2"
14+
python-dateutil = ">=2.9.0"
15+
uvicorn = ">=0.35.0"
16+
tzdata = "*"
17+
818
[tool.poetry.group.dev.dependencies]
919
pytest = "^8.2.2"
1020
ruff = "^0.5.0"
1121
httpx = "^0.28.1"
1222
pytest-asyncio = "^0.23.7"
1323

1424

15-
[project]
16-
name = "temporal-awareness-mcp"
17-
version = "0.1.0"
18-
description = "A robust MCP server that gives language models temporal awareness and calculation abilities."
19-
authors = [
20-
{ name = "Your Name", email = "[email protected]" },
21-
]
22-
license = { text = "MIT" }
23-
readme = "README.md"
24-
requires-python = "^3.12"
25-
26-
dependencies = [
27-
"fastmcp>=2.3.2",
28-
"pydantic>=2.8.2",
29-
"python-dateutil>=2.9.0",
30-
"uvicorn>=0.35.0",
31-
"tzdata",
32-
]
33-
34-
[project.urls]
35-
Homepage = "https://github.com/pmbstyle/temporal-awareness-mcp"
36-
Repository = "https://github.com/pmbstyle/temporal-awareness-mcp"
25+
[build-system]
26+
requires = ["poetry-core>=1.0.0"]
27+
build-backend = "poetry.core.masonry.api"
3728

3829
[tool.ruff]
3930
line-length = 88
4031
target-version = "py312"
4132

42-
[tool.ruff.lint]
43-
select = ["E", "W", "F", "I", "UP", "C4", "B"]
44-
4533
[tool.ruff.format]
4634
quote-style = "double"
4735

0 commit comments

Comments
 (0)