enable gitter for lml

This commit is contained in:
chfw 2017-07-01 15:53:03 +01:00
parent f273c13db6
commit eb741f6223
6 changed files with 9 additions and 9 deletions

View File

@ -13,6 +13,9 @@
:target: http://{{name|lower}}.readthedocs.org/en/latest/
{%endblock%}
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
:target: https://gitter.im/chfw_lml/Lobby
{%include "description.rst.jj2" %}
Installation

View File

@ -11,6 +11,7 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
{%block SPHINX_EXTENSIONS%}
{%endblock%}

View File

@ -8,9 +8,6 @@ except ImportError:
use_setuptools()
from setuptools import setup, find_packages
{%endif%}
{%block platform_block%}
from platform import python_implementation
{%endblock%}
{%block compat_block%}
import sys
PY2 = sys.version_info[0] == 2

View File

@ -11,6 +11,9 @@ lml - Load me later. A lazy loading plugin management system.
.. image:: https://readthedocs.org/projects/lml/badge/?version=latest
:target: http://lml.readthedocs.org/en/latest/
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
:target: https://gitter.im/chfw_lml/Lobby
**lml** seamlessly finds the lml based plugins from your current python
environment but loads your plugins on demand. It is designed to support
plugins that have external dependencies, especially bulky and/or

View File

@ -7,16 +7,15 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'sphinxcontrib.spelling'
]
plantuml_output_format = 'svg'
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
imgpath = '_static'
project = u'lml'
copyright = u'2017 Onni Software Ltd.'
version = '0.0.1'

View File

@ -1,5 +1,2 @@
cd tests/test_plugin
python setup.py install
cd -
pip freeze
nosetests --with-cov --cover-package lml --cover-package tests --with-doctest --doctest-extension=.rst README.rst tests docs/source lml && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long