|
| 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 | + |
1 | 46 | [tool.black]
|
2 | 47 | line-length = 80
|
0 commit comments