from distutils.core import setup, Extension

setup(
    name = "Vmaps",
    version = "1.0",
    description = "Versatile arrays on mmap()",
    author = "Mark Lamb",
    author_email = "dragon@snafu.freedom.org",
    url = "http://snafu.freedom.org/Vmaps/",
    licence = "GPL",
    ext_modules = [ Extension('Vmaps', ['Vmapsmodule.c',], ), ]
    )




