average 0.6.0

Calculate statistics iteratively
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

from distutils.core import setup

setup(name='LiveStats',
      version='1.0',
      description='LiveStats solves the problem of generating accurate statistics for when your data set is too large to fit in memory, or too costly to sort.',
      author='Sean Cassidy',
      author_email='gward@python.net',
      url='https://bitbucket.org/scassidy/livestats',
      packages=['livestats'],
     )