Fixed README path in MANIFEST.in, set README as long description in setup.py

This commit is contained in:
Danilo Bargen
2012-09-17 23:55:07 +02:00
parent bed7c3ff74
commit 95a059398e
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
include README.mdown include README.rst
include LICENSE.txt include LICENSE.txt
include AUTHORS.txt include AUTHORS.txt
recursive-exclude * *.pyc recursive-exclude * *.pyc

View File

@@ -5,6 +5,8 @@ from setuptools import setup
__AUTHOR__ = 'David Halter' __AUTHOR__ = 'David Halter'
__AUTHOR_EMAIL__ = 'davidhalter88@gmail.com' __AUTHOR_EMAIL__ = 'davidhalter88@gmail.com'
readme = open('README.rst').read()
setup(name='jedi', setup(name='jedi',
version='0.5.0-beta', version='0.5.0-beta',
description='An autocompletion tool for Python that can be used from text editors like vim.', 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', url='https://github.com/davidhalter/jedi',
license='LGPLv3', license='LGPLv3',
keywords='python completion refactoring vim', keywords='python completion refactoring vim',
long_description=readme,
packages=['jedi'], packages=['jedi'],
platforms=['any'], platforms=['any'],
classifiers=[ classifiers=[