MoDeNa  1.0
Software framework facilitating sequential multi-scale modelling
setup.py
1 #!/usr/bin/env python
2 
3 from distutils.core import setup, Extension
4 
5 args = {
6  'name': 'modena',
7  'description' : 'Simulation framework application facilitating simulation of interconnected models',
8  'version': '1.0',
9  'package_dir': { 'modena': '/home/henrus/projects/Modena/MoDeNa-github/src/python' },
10  'packages': ['modena'],
11  'classifiers': [
12  "License :: GNU - General Public License (GPL)",
13  "Programing Language :: Python, C, FORTRAN",
14  "Development Status :: 0 - Beta",
15  "Intended Audience :: Science and Engineering",
16  "Topic :: Multi-scale Modelling",
17  ],
18  'keywords': 'multi-scale modelling',
19 } # end ARGS
20 
21 if not '' == '':
22  args['package_data'] = {'modena': ['']}
23 
24 setup(**args)