63 lines
1.6 KiB
TOML
63 lines
1.6 KiB
TOML
[build-system]
|
|
requires = ["hatchling>=1.18"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "gaiia"
|
|
version = "0.1.0"
|
|
description = "Python client for the gaiia GraphQL API and webhooks."
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
requires-python = ">=3.10"
|
|
authors = [{ name = "Graham McIntire", email = "graham@mcintire.me" }]
|
|
keywords = ["gaiia", "graphql", "api", "wisp", "isp", "client"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Typing :: Typed",
|
|
]
|
|
dependencies = ["httpx>=0.27"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-asyncio>=0.23",
|
|
"respx>=0.21",
|
|
"mypy>=1.10",
|
|
"ruff>=0.5",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://app.gaiia.com/docs/overview"
|
|
Documentation = "https://app.gaiia.com/docs/overview"
|
|
Source = "https://github.com/grahammcintire/gaiia-py"
|
|
Issues = "https://github.com/grahammcintire/gaiia-py/issues"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["src/gaiia", "README.md", "LICENSE"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/gaiia"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "B", "UP", "SIM"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
strict = true
|
|
warn_unused_ignores = true
|