-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 824 Bytes
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
[project]
name = "huppa-cli"
version = "0.1.0"
description = "CLI tool and MCP server for Huppa gym class booking"
readme = "README.md"
requires-python = ">=3.11,<4.0"
authors = [{name = "dev"}]
dependencies = [
"mcp>=1.6,<2.0",
"requests>=2.32,<3.0",
"python-dotenv>=1.0,<2.0",
"pydantic>=2.10,<3.0",
"keyring>=25.0,<26.0",
"click>=8.1,<9.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.9,<1.0",
"pre-commit>=4.0,<5.0",
"pytest>=8.3,<9.0",
"mypy>=1.15,<2.0",
"types-requests>=2.32.0.20240914,<3.0",
]
[project.scripts]
huppa = "huppa_cli.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.mypy]
python_version = "3.11"
files = ["huppa_cli"]
ignore_missing_imports = true
warn_unused_ignores = true