|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling", "tomli"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "tadata-sdk" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Tadata Python SDK" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.10" |
| 11 | +authors = [ |
| 12 | + {name = "Tadata Inc."}, |
| 13 | +] |
| 14 | +classifiers = [ |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | + "Programming Language :: Python :: 3.10", |
| 17 | + "Programming Language :: Python :: 3.11", |
| 18 | + "Programming Language :: Python :: 3.12", |
| 19 | + "Programming Language :: Python :: 3.13", |
| 20 | +] |
| 21 | +keywords = ["openapi", "mcp", "llm", "modelcontextprotocol", "tadata"] |
| 22 | +dependencies = [ |
| 23 | + "pydantic>=2.0.0", |
| 24 | + "pydantic-settings>=2.5.2", |
| 25 | + "httpx>=0.24.0", |
| 26 | + "tomli>=2.2.1", |
| 27 | +] |
| 28 | + |
| 29 | +[dependency-groups] |
| 30 | +dev = [ |
| 31 | + "mypy>=1.15.0", |
| 32 | + "ruff>=0.9.10", |
| 33 | + "types-setuptools>=75.8.2.20250305", |
| 34 | + "pytest>=8.3.5", |
| 35 | + "pytest-asyncio>=0.26.0", |
| 36 | + "pytest-cov>=6.1.1", |
| 37 | + "pre-commit>=4.2.0", |
| 38 | +] |
| 39 | + |
| 40 | +[project.urls] |
| 41 | +Homepage = "https://github.com/tadata-org/tadata-python-sdk" |
| 42 | +Documentation = "https://github.com/tadata-org/tadata-python-sdk#readme" |
| 43 | +"Bug Tracker" = "https://github.com/tadata-org/tadata-python-sdk/issues" |
| 44 | +"PyPI" = "https://pypi.org/project/tadata-python-sdk/" |
| 45 | +"Source Code" = "https://github.com/tadata-org/tadata-python-sdk" |
| 46 | +"Changelog" = "https://github.com/tadata-org/tadata-python-sdk/blob/main/CHANGELOG.md" |
| 47 | + |
| 48 | +[tool.hatch.build.targets.wheel] |
| 49 | +packages = ["tadata_python_sdk"] |
| 50 | + |
| 51 | +[tool.ruff] |
| 52 | +line-length = 120 |
| 53 | +target-version = "py313" |
| 54 | + |
| 55 | +[tool.pytest.ini_options] |
| 56 | +asyncio_mode = "auto" |
| 57 | +testpaths = ["tests"] |
| 58 | +python_files = "test_*.py" |
0 commit comments