mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-30 15:19:27 -07:00
34 lines
941 B
TOML
34 lines
941 B
TOML
[project]
|
|
name = "brk-client"
|
|
version = "0.1.0-alpha.1"
|
|
description = "Python client for the Bitcoin Research Kit"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = "MIT"
|
|
keywords = ["bitcoin", "blockchain", "analytics", "on-chain"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Typing :: Typed",
|
|
]
|
|
dependencies = ["httpx>=0.25.0"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://bitcoinresearchkit.org"
|
|
Repository = "https://github.com/bitcoinresearchkit/brk"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|