-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 1.23 KB
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
41
42
43
[project]
name = "tesla-skill"
version = "0.1.0"
description = "Tesla Fleet API exposed as MCP tools for AI agents (Claude Code, Cursor, Claude Desktop, etc.)"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
authors = [
{ name = "Vibetool", email = "team@vibetool.ai" },
]
keywords = ["tesla", "mcp", "fleet-api", "agent", "claude", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
]
dependencies = [
"mcp[cli]>=1.2.0",
"python-dotenv>=1.0.0",
"httpx>=0.27.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"cryptography>=43.0.0",
]
[project.urls]
Homepage = "https://github.com/Vibetool/tesla-skill"
Issues = "https://github.com/Vibetool/tesla-skill/issues"
[project.scripts]
tesla-skill-mcp = "tesla_skill.server:main"
tesla-skill-callback = "tesla_skill.auth.callback_server:main"
tesla-skill-authorize = "tesla_skill.auth.authorize:main"
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tesla_skill"]