Skip to content

Commit 987cbff

Browse files
committed
Described project in pyproject.toml
1 parent 1a0499f commit 987cbff

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ indent_size = 4
1313
[*.rst]
1414
indent_size = 3
1515

16-
[.travis.yml]
16+
[*.{yml,yaml,toml}]
1717
indent_size = 2

pyproject.toml

+45
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,47 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[tool.hatch.build.targets.wheel]
6+
packages = ["jsonrpclib"]
7+
8+
[project]
9+
name = "jsonrpclib-pelix"
10+
version = "0.4.3.4"
11+
authors = [
12+
{ name="Thomas Calmant", email="[email protected]" },
13+
{ name="Josh Marshall" }
14+
]
15+
description = """\
16+
JSON-RPC v2.0 client and server for Python 2.7 and Python 3.6+ \
17+
usable with Pelix/iPOPO remote services.\
18+
"""
19+
readme = "README.md"
20+
requires-python = ">=3.6"
21+
classifiers = [
22+
"Development Status :: 5 - Production/Stable",
23+
"Intended Audience :: Developers",
24+
"License :: OSI Approved :: Apache Software License",
25+
"Operating System :: OS Independent",
26+
"Programming Language :: Python :: 2.7",
27+
"Programming Language :: Python :: 3",
28+
"Programming Language :: Python :: 3.6",
29+
"Programming Language :: Python :: 3.7",
30+
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
36+
]
37+
license = "Apache-2.0"
38+
license-files = ["LICENSE"]
39+
40+
[project.urls]
41+
Homepage = "http://github.com/tcalmant/jsonrpclib/"
42+
Issues = "http://github.com/tcalmant/jsonrpclib/issues"
43+
Documentation = "https://jsonrpclib-pelix.readthedocs.io/"
44+
Source = "http://github.com/tcalmant/jsonrpclib/"
45+
146
[tool.black]
247
line-length = 80

0 commit comments

Comments
 (0)