Loading [MathJax]/extensions/TeX/AMSsymbols.js
MoDeNa
1.0
Software framework facilitating sequential multi-scale modelling
Main Page
Related Pages
Modules
+
Packages
Packages
+
Package Functions
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
y
Functions/Subroutines
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Data Types List
Data Types List
Data Types
Class Hierarchy
+
Data Fields
+
All
_
a
b
c
e
f
g
i
l
m
n
o
p
s
t
u
v
w
+
Functions/Subroutines
_
a
b
c
e
f
g
i
l
m
n
o
p
t
u
v
w
Variables
+
Files
File List
+
Globals
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
x
+
Functions/Subroutines
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
w
x
+
Variables
a
b
c
d
e
i
k
l
m
n
o
p
r
s
t
w
x
Typedefs
Macros
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Macros
Modules
Pages
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)
src
python
setup.py
Generated on Fri Jan 13 2017 16:47:20 for MoDeNa by
1.8.13