From 95a059398e533bad2e591637d02ea1a3925411e2 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Mon, 17 Sep 2012 23:55:07 +0200 Subject: [PATCH] Fixed README path in MANIFEST.in, set README as long description in setup.py --- MANIFEST.in | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 12d70a52..99357d3d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.mdown +include README.rst include LICENSE.txt include AUTHORS.txt recursive-exclude * *.pyc diff --git a/setup.py b/setup.py index 13d6bd76..78e4ff80 100644 --- a/setup.py +++ b/setup.py @@ -5,6 +5,8 @@ from setuptools import setup __AUTHOR__ = 'David Halter' __AUTHOR_EMAIL__ = 'davidhalter88@gmail.com' +readme = open('README.rst').read() + setup(name='jedi', version='0.5.0-beta', description='An autocompletion tool for Python that can be used from text editors like vim.', @@ -15,6 +17,7 @@ setup(name='jedi', url='https://github.com/davidhalter/jedi', license='LGPLv3', keywords='python completion refactoring vim', + long_description=readme, packages=['jedi'], platforms=['any'], classifiers=[