summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJosh Marshall <catchjosh@gmail.com>2021-03-31 15:51:05 +0900
committerJosh Marshall <catchjosh@gmail.com>2021-03-31 15:51:05 +0900
commita41dbbd1a392b16457f1105db3f1b690efa53d7a (patch)
treed6b48e04c1d65910a5f18738160e2346339441a3 /setup.cfg
parent4182082b0d5b503146d5dcab49fd9e4afd0e9e48 (diff)
downloadjsonrpclib-a41dbbd1a392b16457f1105db3f1b690efa53d7a.tar.gz
Using pyproject / static setuptools config.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..13d6b31
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,13 @@
+[metadata]
+name = jsonrpclib
+version = 0.2.1
+author = Josh Marshall
+author_email = catchjosh@gmail.com
+url = https://github.com/joshmarshall/jsonrpclib
+long_description = file: README.md
+long_description_content_type = text/markdown
+description = Implementation of the JSON-RPC v2.0 specification (backwards-compatible) as a client library.
+
+[options]
+packages = jsonrpclib
+python_requires = >=3.5