from distutils.core import setup

setup (
    name = "fixedpoint",
    version = "0.1.2",
    description = "python-fixedpiont - a fixed point math object for Python",
    author = "Tim Peters",
    author_email = "tim.one@home.com",
    url = "http://fixedpoint.sourceforge.net/",
       
    py_modules = ['fixedpoint']
    )
      
      
