forked from joshmarshall/jsonrpclib
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.4 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["jsonrpclib"]
[project]
name = "jsonrpclib-pelix"
version = "0.4.3.4"
authors = [
{ name="Thomas Calmant", email="[email protected]" },
{ name="Josh Marshall" }
]
description = """\
JSON-RPC v2.0 client and server for Python 2.7 and Python 3.6+ \
usable with Pelix/iPOPO remote services.\
"""
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
]
license = "Apache-2.0"
license-files = ["LICENSE"]
[project.urls]
Homepage = "http://github.com/tcalmant/jsonrpclib/"
Issues = "http://github.com/tcalmant/jsonrpclib/issues"
Documentation = "https://jsonrpclib-pelix.readthedocs.io/"
Source = "http://github.com/tcalmant/jsonrpclib/"
[tool.black]
line-length = 80