28 lines
720 B
TOML
28 lines
720 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "prime-sdk-python"
|
|
version = "0.2.0"
|
|
description = "A self-contained Python SDK for interacting with Dragonchain nodes."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { text = "Apache-2.0" }
|
|
authors = [{ name = "Dragonchain" }]
|
|
keywords = ["dragonchain", "blockchain", "sdk", "prime"]
|
|
dependencies = [
|
|
"requests>=2.25",
|
|
"PyYAML>=5.4",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.dragonchain.com/dragonchain/prime-sdk-python"
|
|
Repository = "https://git.dragonchain.com/dragonchain/prime-sdk-python"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=7.0"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["prime_sdk"]
|