mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
Fixed README path in MANIFEST.in, set README as long description in setup.py
This commit is contained in:
@@ -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
|
||||||
|
|||||||
3
setup.py
3
setup.py
@@ -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=[
|
||||||
|
|||||||
Reference in New Issue
Block a user