mirror of
https://github.com/cortesi/scurve.git
synced 2025-06-18 16:55:33 -04:00
13 lines
387 B
Python
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"],
|
|
)
|