sdk/pyproject.toml
mrmamongo 38e074704c docs: fix install command with extra-index-url, bump to 0.1.2
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-04-20 12:36:38 +03:00

47 lines
858 B
TOML

[project]
name = "sdk"
version = "0.1.2"
description = "ErGPT Knowledge Base API SDK"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.25.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/your-org/ergpt-sdk"
Repository = "https://github.com/your-org/ergpt-sdk"
[tool.setuptools.packages.find]
where = ["."]
include = ["ergpt*"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[dependency-groups]
dev = [
"build>=1.4.3",
"ruff>=0.15.11",
"twine>=6.2.0",
]