[project] name = "synor-sdk" version = "0.1.0" description = "Synor SDK for Python - Complete blockchain SDK including Compute, Wallet, RPC, and Storage" readme = "README.md" license = { text = "MIT" } authors = [ { name = "Synor Team", email = "dev@synor.cc" } ] keywords = ["synor", "blockchain", "compute", "wallet", "rpc", "storage", "ipfs", "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", "Topic :: Software Development :: Libraries :: Python Modules", ] requires-python = ">=3.10" dependencies = [ "httpx>=0.25.0", "numpy>=1.24.0", "pydantic>=2.0.0", "websockets>=12.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/sdk" Repository = "https://github.com/synor/synor" Changelog = "https://github.com/synor/synor/blob/main/CHANGELOG.md" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.ruff] line-length = 100 target-version = "py310" [tool.mypy] python_version = "3.10" strict = true