-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
36 lines (33 loc) · 1.28 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
# Version number
major = 2018
minor = 1
setup(name = "oasis",
version = "%d.%d" % (major, minor),
description = "Oasis - Navier-Stokes solvers in FEniCS",
author = "Mikael Mortensen",
author_email = "mikaem@math.uio.no",
url = 'https://github.com/mikaem/Oasis.git',
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python ',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ["oasis",
"oasis.problems",
"oasis.problems.NSfracStep",
"oasis.problems.NSCoupled",
"oasis.solvers",
"oasis.solvers.NSfracStep",
"oasis.solvers.NSfracStep.LES",
"oasis.solvers.NSfracStep.NNModel",
"oasis.solvers.NSCoupled",
"oasis.common",
],
package_dir = {"oasis": "oasis"},
entry_points = {'console_scripts': ['oasis=oasis.run_oasis:main']},
)