-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.54 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modelmesh-lite"
version = "0.1.1"
description = "Capability-driven AI model routing with automatic failover and free-tier aggregation"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "ModelMesh Contributors"}
]
keywords = ["ai", "llm", "routing", "openai", "multi-provider", "failover", "load-balancing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.optional-dependencies]
yaml = ["pyyaml>=6.0"]
full = ["pyyaml>=6.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21", "ruff>=0.1"]
[project.urls]
Homepage = "https://github.com/ApartsinProjects/ModelMesh"
Documentation = "https://github.com/ApartsinProjects/ModelMesh/tree/master/docs"
Repository = "https://github.com/ApartsinProjects/ModelMesh"
Issues = "https://github.com/ApartsinProjects/ModelMesh/issues"
[tool.setuptools.packages.find]
where = ["src/python"]
include = ["modelmesh*"]
[tool.setuptools.package-data]
modelmesh = ["py.typed"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"