~reducedmodelling/fluidity/ROM_Non-intrusive-ann

« back to all changes in this revision

Viewing changes to python/setup.py

  • Committer: fangf at ac
  • Date: 2012-11-06 12:21:31 UTC
  • mto: This revision was merged to the branch mainline in revision 3989.
  • Revision ID: fangf@imperial.ac.uk-20121106122131-u2zvt7fxc1r3zeou
updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from distutils.core import setup
 
2
from distutils.extension import Extension
 
3
import os
 
4
import os.path
 
5
 
 
6
try:
 
7
  destdir = os.environ["DESTDIR"]
 
8
except KeyError:
 
9
  destdir = ""
 
10
 
 
11
setup(
 
12
      name='fluidity',
 
13
      version='0.1',
 
14
      description="Fluidity python files",
 
15
      author = "The ICOM team",
 
16
      author_email = "patrick.farrell06@imperial.ac.uk",
 
17
      url = "http://amcg.ese.ic.ac.uk",
 
18
      packages = ['fluidity', 'fluidity.diagnostics'],
 
19
      package_dir = {'fluidity': 'fluidity'},
 
20
      py_modules = ['fluidity_tools', 'vtktools']
 
21
     )
 
22
 
 
23