scurve/setup.py
2011-12-22 09:52:41 +13:00

13 lines
387 B
Python

from distutils.core import setup
version = "0.2"
setup(
name = "scurve",
version = version,
description = "A collection of space-filling curves and related algorithms.",
author = "Aldo Cortesi",
author_email = "aldo@corte.si",
packages = ["scurve"],
scripts = ["colormap", "cube", "drawcurve", "gray", "testpattern", "binvis"],
)