Revision a9fca388

b/Changelog
1 1
CHANGELOG for version 0.6.3
2 2

  
3
1. Introduce a quotaholder client (and primitive cli)
4
2. Enrich output responses and error reporting with instructions per command
5
3. Unified result output
6
4. Stabilize error handling (crashes are much less frequent)
7
5. Dynamic upper limit on threads when uploading
8
6. Update documentation
9
7. Restructure CLI code to clarify what is used in each interface mode
3
1. Get rid of OrderedDict dependency (for python <= 2.6)
4
2. Minor fixes
b/MANIFEST.in
1
include README.rst COPYRIGHT
1
include README.rst COPYRIGHT Changelog
2
recursive-include docs *
3
prune docs/_build
b/kamaki/cli/config.py
39 39
try:
40 40
    from collections import OrderedDict
41 41
except ImportError:
42
    from ordereddict import OrderedDict
42
    from kamaki.clients.commissioning.utils.ordereddict import OrderedDict
43 43

  
44 44

  
45 45
# Path to the file that stores the configuration
b/setup.py
45 45
requires = ['objpool',
46 46
            'argparse']
47 47

  
48
if not hasattr(collections, "OrderedDict"):  # Python 2.6
49
    requires.append("ordereddict")
50

  
51 48
setup(
52 49
    name='kamaki',
53 50
    version=kamaki.__version__,

Also available in: Unified diff