-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (106 loc) · 3.21 KB
/
Copy pathpyproject.toml
File metadata and controls
123 lines (106 loc) · 3.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "worldlabs-mcp"
version = "0.5.0"
description = "Generate navigable 3D worlds from text, images, and video via the World Labs Marble API"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Sandra Schipal", email = "sandraschipal@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["mcp", "worldlabs", "marble", "3d", "world-generation", "ai", "spatial-intelligence", "spark", "gaussian-splatting"]
dependencies = [
"fastmcp>=3.4.4,<4",
"fastapi>=0.115.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.1",
"prefab-ui>=0.18.0",
"psutil>=5.9",
]
[project.optional-dependencies]
tts = ["edge-tts>=6.1.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-httpx>=0.30",
"ruff>=0.16.0,<0.17",
"mypy>=1.0",
"pyinstaller>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/sandraschi/worldlabs-mcp"
Documentation = "https://github.com/sandraschi/worldlabs-mcp#readme"
Issues = "https://github.com/sandraschi/worldlabs-mcp/issues"
Source = "https://github.com/sandraschi/worldlabs-mcp"
[project.scripts]
worldlabs-mcp = "worldlabs_mcp.server:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["worldlabs_mcp", "worldlabs_mcp.*"]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = ["fastmcp.*", "httpx.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "S", "UP", "RUF", "T20"]
ignore = ["S101", "B008", "S106", "S110", "S112", "S101", "B008", "S106", "S110", "S112", "RUF012", "S603", "S607", "S324", "E402", "E501"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["T20"]
"scripts/**/*" = ["T20"]
"competition/**/*" = ["T20"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[dependency-groups]
dev = [
"pre-commit>=4.6.1",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-httpx>=0.30",
"ruff>=0.16.0,<0.17",
"mypy>=1.0",
"pyright>=1.1.390",
"pyinstaller>=6.21.0",
"pywin32>=311",
]
[tool.pyright]
include = ["src"]
pythonVersion = "3.11"
typeCheckingMode = "basic"
reportMissingImports = "none"
reportUnknownMemberType = "none"
reportUnknownVariableType = "none"
reportUnknownArgumentType = "none"
reportMissingTypeStubs = "none"
# Suppress false positives that are handled at runtime or via optional deps
reportPossiblyUnboundVariable = "none"
reportReturnType = "none"
reportAttributeAccessIssue = "none"
reportCallIssue = "none"
reportUnsupportedDunderAll = "none"