1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#!/usr/bin/env python
import os
import sys
from distutils.core import setup
version_file = os.path.join('lib','__version__.py')
if 1 or not os.path.exists(version_file):
major_version = 0
minor_version = 4
execfile(os.path.join('tools','get_revision.py'))
__version__='%d.%d.%d'%(major_version,minor_version,revision_version)
for l in ['lib','lib152']:
f = open(os.path.join(l,'__version__.py'),'w')
f.write('__version__ = "%s"\n'%(__version__))
f.close()
execfile(version_file)
if sys.version[:3]>='2.3':
config = dict(\
download_url='http://cens.ioc.ee/projects/pyvtk/rel-0.x/PyVTK-0.latest.tar.gz',
keywords = ['VTK'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Visualization',
],
platforms = 'All')
else:
config = {}
print "PyVTK Version",__version__
setup (name = "PyVTK",
version = __version__,
description = "PyVTK - tools for manipulating VTK files in Python",
author = "Pearu Peterson",
author_email = "pearu@cens.ioc.ee",
maintainer = "Pearu Peterson",
maintainer_email = "pearu@cens.ioc.ee",
license = "LGPL",
long_description= """\
PyVTK provides tools for manipulating VTK (Visualization Toolkit)
files in Python:
VtkData - create VTK files from Python / read VTK files to Python.""",
url = "http://cens.ioc.ee/projects/pyvtk/",
packages = ['pyvtk'],
package_dir = {'pyvtk':{'2':'lib','1':'lib152'}[sys.version[0]]},
**config
)
|