• C
    Travis CI: enable setuptools entry points · 5b643bd1
    Cleber Rosa 提交于
    The new plugin architecture depends on setuptools entry points being
    properly registered. These entry points are defined in a `setup.py`
    file, as the `entrypoints` parameter, but they are only effective when
    they become an `entry_points.txt` file inside a
    `<your_project>.egg_info` directory.
    
    This can happen in two ways:
    
    1) installing the package, that is, running `$ python setup.py
    install`
    
    2) enabling the development mode, that is, running `$ python setup.py
    develop`.
    
    The approach chosen here is the latter, because it's faster, doesn't
    require a full install and points to the checked out source code tree.
    Signed-off-by: NCleber Rosa <crosa@redhat.com>
    5b643bd1
.travis.yml 516 字节