-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 1016 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "metagraphed"
version = "0.4.0"
description = "Thin Python client for metagraphed — the operational + integration registry for Bittensor subnets (api.metagraph.sh)."
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.9"
authors = [{ name = "JSONbored" }]
keywords = ["bittensor", "metagraph", "subnet", "registry", "api-client"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
# The base package is dependency-free (stdlib only). The async client pulls
# httpx behind this extra: `pip install 'metagraphed[async]'`.
[project.optional-dependencies]
async = ["httpx>=0.27"]
test = ["httpx>=0.27"]
[project.urls]
Homepage = "https://metagraph.sh"
Repository = "https://github.com/JSONbored/metagraphed"
[tool.hatch.build.targets.wheel]
packages = ["src/metagraphed"]