diff --git a/README.txt b/README.rst similarity index 92% rename from README.txt rename to README.rst index a93efcf..066306b 100644 --- a/README.txt +++ b/README.rst @@ -1,5 +1,6 @@ +================ XStatic-Dagre-D3 --------------- +================ Dagre-D3 JavaScript library packaged for setuptools (easy_install) / pip. diff --git a/setup.py b/setup.py index 42c6bf4..52eb41e 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ from xstatic.pkg import dagre_d3 as xs # The README.txt file should be written in reST so that PyPI can use # it to generate your project's PyPI page. -long_description = open('README.txt').read() +long_description = open('README.rst').read() setup( name=xs.PACKAGE_NAME, version=xs.PACKAGE_VERSION, description=xs.DESCRIPTION, long_description=long_description, - long_description_content_type="text/markdown", + long_description_content_type="text/x-rst", classifiers=xs.CLASSIFIERS, keywords=xs.KEYWORDS, maintainer=xs.MAINTAINER,