From ae281cc4c6d4760f90f9aeea701deda59cd0e1d6 Mon Sep 17 00:00:00 2001 From: vidon Date: Mon, 13 Jun 2005 00:25:09 +0000 Subject: Script d'installation de la librairie python Zinc et des demos --- Python/setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Python/setup.py (limited to 'Python') diff --git a/Python/setup.py b/Python/setup.py new file mode 100644 index 0000000..9e15056 --- /dev/null +++ b/Python/setup.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# -*- coding: iso-8859-1 -*- +from distutils.core import setup +setup(name="python-zinc", + version="1.0", + description="Zinc for Python", + author="Guillaume Vidon", + author_email="vidon at ath.cena.fr", + license="GPL", + url="http://www.tkzinc.org", + py_modules=[], + package_dir = {"Zinc" : "library"}, + packages = ["Zinc",], + data_files=[('share/doc/python-zinc',['demos/testGraphics.py','demos/paper.gif'])]) + + +#Local Variables: +#mode: python +#End: -- cgit v1.1