update documentation

This commit is contained in:
chfw 2017-04-06 22:54:21 +01:00
parent 85aa803a5e
commit 0e57f9f844
7 changed files with 24 additions and 11 deletions

View File

@ -1,5 +1,5 @@
================================================================================
{{name}}
{{name}} - {{description}}
================================================================================
.. image:: https://api.travis-ci.org/{{organisation}}/{{name}}.svg?branch=master
@ -13,6 +13,12 @@
:target: http://{{name|lower}}.readthedocs.org/en/latest/
{%endblock%}
**name** automatically load plugins that extend the main component from your
python environment, which could be your virtual environment, PyInstaller
environment. Its main feature is lazy loading. There could be hundreds of
plugins in your python environment but only a handful of plugins are loaded
when they are really needed.
Installation
================================================================================

View File

@ -1,2 +1,7 @@
Change log
===========
0.0.1 - unreleased
--------------------------------------------------------------------------------
Initial commit

View File

@ -1,5 +1,5 @@
================================================================================
lml
lml - Load me later. A lazy loading plugin management system.
================================================================================
.. image:: https://api.travis-ci.org/chfw/lml.svg?branch=master
@ -11,6 +11,12 @@ lml
.. image:: https://readthedocs.org/projects/lml/badge/?version=latest
:target: http://lml.readthedocs.org/en/latest/
**name** automatically load plugins that extend the main component from your
python environment, which could be your virtual environment, PyInstaller
environment. Its main feature is lazy loading. There could be hundreds of
plugins in your python environment but only a handful of plugins are loaded
when they are really needed.
Installation
================================================================================

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
DESCRIPTION = (
'Plugin first, Load me later' +
'Load me later. A lazy loading plugin management system.' +
''
)
extensions = [

View File

@ -7,6 +7,5 @@ version: "0.0.1"
release: "0.0.1"
copyright_year: 2017
license: New BSD
dependencies:
- six
description: "Plugin first, Load me later"
dependencies: []
description: "Load me later. A lazy loading plugin management system."

View File

@ -1 +0,0 @@
six

View File

@ -15,7 +15,7 @@ VERSION = '0.0.1'
EMAIL = 'wangc_2011(@)hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
'Plugin first, Load me later' +
'Load me later. A lazy loading plugin management system.' +
''
)
KEYWORDS = [
@ -32,13 +32,11 @@ CLASSIFIERS = [
]
INSTALL_REQUIRES = [
'six',
]
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
EXTRAS_REQUIRE = {
}
EXTRAS_REQUIRE = {}
def read_files(*files):