[project] name = "synor-compute" version = "0.1.0" description = "Synor Compute SDK for Python - Access distributed GPU/TPU/NPU compute" readme = "README.md" license = { text = "MIT" } authors = [ { name = "Synor Team", email = "dev@synor.cc" } ] keywords = ["synor", "compute", "gpu", "tpu", "npu", "ai", "ml", "distributed-computing"] 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", "Topic :: Scientific/Engineering :: Artificial Intelligence", ] requires-python = ">=3.10" dependencies = [ "httpx>=0.25.0", "numpy>=1.24.0", "pydantic>=2.0.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "ruff>=0.1.0", "mypy>=1.0.0", ] [project.urls] Homepage = "https://synor.cc" Documentation = "https://docs.synor.cc/compute" Repository = "https://github.com/synor/synor" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.ruff] line-length = 100 target-version = "py310" [tool.mypy] python_version = "3.10" strict = true