Edit

kc3-lang/brotli/python/README.md

Branch :

  • Show log

    Commit

  • Author : Alex Nicksay
    Date : 2016-10-31 07:58:45
    Hash : 92037654
    Message : Python: Use "build" instead of "build_ext" in scripts (#460) Previously, the Python package consisted of a single extension module, so `build_ext` was sufficient. Now, the package contains a native module and an extension module, so both `build_py` and `build_ext` are required. Instead, run `build`, which calls both `build_py` and `build_ext` automatically.

  • python/README.md
  • This directory contains the code for the Python `brotli` module,
    `bro.py` tool, and roundtrip tests.
    
    
    ### Development
    
    To build the module, execute the following from the root project
    directory:
    
        $ python setup.py build
    
    To test the module, execute the following from the root project
    directory:
    
        $ python setup.py test
    
    
    ### Code Style
    
    Brotli's code follows the [Google Python Style Guide][].  To
    automatically format your code, install [YAPF][]:
    
        $ pip install yapf
    
    Then, either format a single file:
    
        $ yapf --in-place FILE
    
    Or, format all files in a directory:
    
        $ yapf --in-place --recursive DIR
    
    See the [YAPF usage][] documentation for more information.
    
    
    [Google Python Style Guide]: https://google.github.io/styleguide/pyguide.html
    [YAPF]: https://github.com/google/yapf
    [YAPF usage]: https://github.com/google/yapf#usage