File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
include LICENSE
2
- include README.rst
2
+ include README.md
Original file line number Diff line number Diff line change 41
41
42
42
# ------------------------------------------------------------------------------
43
43
44
+ # Read the description file
45
+ with open ("README.md" , "r" ) as fh :
46
+ long_description = fh .read ()
47
+
44
48
setup (
45
49
name = "jsonrpclib-pelix" ,
46
50
version = __version__ ,
52
56
"specification (backwards-compatible) as a client library, for Python 2.7 "
53
57
"and Python 3. This version is a fork of jsonrpclib by Josh Marshall, "
54
58
"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" ,
56
61
packages = ["jsonrpclib" ],
57
62
test_suite = "tests" ,
58
63
classifiers = [
You can’t perform that action at this time.
0 commit comments