-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 739 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 739 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chia_py_rpc"
version = "0.1.2"
authors = [
{ name="L4bb3rs", email="king@the300.net" },
]
description = "Chia-Py-RPC is a Python library that provides a convenient way to interact with the Chia blockchain using the Chia RPC (Remote Procedure Call) protocol."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Requests>=2.31.0",
"urllib3>=2.0.7",
]
[project.urls]
"Homepage" = "https://github.com/L4bb3rs/Chia-Py-RPC"
"Bug Tracker" = "https://github.com/L4bb3rs/Chia-Py-RPC"