diff --git a/README.txt b/README.rst similarity index 90% rename from README.txt rename to README.rst index e2cf057..014a175 100644 --- a/README.txt +++ b/README.rst @@ -1,5 +1,6 @@ +======================= XStatic-Moment-Timezone --------------- +======================= Moment-Timezone JavaScript library packaged for setuptools (easy_install) / pip. diff --git a/setup.py b/setup.py index bc8cfbe..6fc264b 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ from xstatic.pkg import moment_timezone 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,