31 lines
760 B
TOML
31 lines
760 B
TOML
[project]
|
|
name = "jsonrpc"
|
|
version = "2.0"
|
|
authors = [
|
|
{ name="RemiZOffAlex", email="remizoffalex@gmail.com" },
|
|
]
|
|
maintainers = [
|
|
{ name="RemiZOffAlex", email="remizoffalex@gmail.com" },
|
|
]
|
|
description = ""
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13"
|
|
]
|
|
keywords = ["api", "json", "json-rpc", "rpc"]
|
|
|
|
[build-system]
|
|
requires = ["flit_core >=3.2,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[tool.flit.sdist]
|
|
include = []
|
|
exclude = []
|