Skip to content

Commit 30819c1

Browse files
committed
Updated setup files to reference README.md
1 parent 11b7adc commit 30819c1

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include LICENSE
2-
include README.rst
2+
include README.md

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141

4242
# ------------------------------------------------------------------------------
4343

44+
# Read the description file
45+
with open("README.md", "r") as fh:
46+
long_description = fh.read()
47+
4448
setup(
4549
name="jsonrpclib-pelix",
4650
version=__version__,
@@ -52,7 +56,8 @@
5256
"specification (backwards-compatible) as a client library, for Python 2.7 "
5357
"and Python 3. This version is a fork of jsonrpclib by Josh Marshall, "
5458
"made to be also usable with Pelix/iPOPO remote services.",
55-
long_description=open("README.rst").read(),
59+
long_description=long_description,
60+
long_description_content_type="text/markdown",
5661
packages=["jsonrpclib"],
5762
test_suite="tests",
5863
classifiers=[

0 commit comments

Comments
 (0)