mirror of
https://github.com/openai/harmony.git
synced 2025-08-21 13:17:07 -04:00
28 lines
776 B
TOML
28 lines
776 B
TOML
[build-system]
|
|
requires = ["maturin>=1.8,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "openai-harmony"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
dynamic = ["version"]
|
|
dependencies = ["pydantic>=2.11.7"]
|
|
description = "OpenAI's response format for its open-weight model series gpt-oss"
|
|
readme = "README.md"
|
|
|
|
[project.optional-dependencies]
|
|
demo = ["uvicorn", "fastapi"]
|
|
|
|
[tool.maturin]
|
|
features = ["python-binding", "pyo3/extension-module"]
|
|
module-name = "openai_harmony"
|
|
python-source = "python"
|
|
|
|
[tool.pytest.ini_options]
|
|
# Only collect tests from the top-level tests directory
|
|
testpaths = ["tests"]
|