/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

Improved installation documentation and metadata.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from meta import *
22
22
from meta import __version__
23
23
 
24
 
# see http://docs.python.org/distutils/setupscript.html#meta-data
25
 
# and http://docs.python.org/distutils/apiref.html
26
 
# for a list of meta data to be included here.
27
24
if __name__ == "__main__":
28
25
 
29
26
    readme=file('README.txt').read()
30
 
    readme=readme[:readme.index('\n.. cut long_description here')]
 
27
    readme=readme[readme.index('\n===') :
 
28
                  readme.index('\n.. cut long_description here')]
31
29
 
 
30
    # see http://docs.python.org/distutils/setupscript.html#meta-data
 
31
    # and http://docs.python.org/distutils/apiref.html
 
32
    # for a list of meta data to be included here.
32
33
    setup(
33
34
        name="bzr-bash-completion",
34
35
        version=__version__,
35
36
        description="Generate bash command line completion function for bzr",
 
37
        keywords='bash bazaar bzr complete completion plugin shell vcs',
36
38
        long_description=readme,
37
39
        author="Martin von Gagern",
38
40
        author_email="Martin.vGagern@gmx.net",