aboutsummaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorvidon2005-06-13 00:25:09 +0000
committervidon2005-06-13 00:25:09 +0000
commitae281cc4c6d4760f90f9aeea701deda59cd0e1d6 (patch)
tree17bc74ca6640d1fcd17d0ab1b38f8260d4ed3abf /Python
parentd22ede54b7b3a0c1d010d9f383052856fef7802a (diff)
downloadtkzinc-ae281cc4c6d4760f90f9aeea701deda59cd0e1d6.zip
tkzinc-ae281cc4c6d4760f90f9aeea701deda59cd0e1d6.tar.gz
tkzinc-ae281cc4c6d4760f90f9aeea701deda59cd0e1d6.tar.bz2
tkzinc-ae281cc4c6d4760f90f9aeea701deda59cd0e1d6.tar.xz
Script d'installation de la librairie python Zinc et des demos
Diffstat (limited to 'Python')
-rw-r--r--Python/setup.py19
1 files changed, 19 insertions, 0 deletions
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: