aboutsummaryrefslogtreecommitdiff
path: root/Python/setup.py
blob: beb19d4c5e7ea2d8333002deb2ed733f1684f802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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/zinc-python/demos/Graphics',
                   ['demos/testGraphics.py','demos/paper.gif'])])
                  

#Local Variables:
#mode: python
#End: