-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.62 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.62 KB
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
#!/usr/bin/env python
from setuptools import setup
# Version number
major = 2024
minor = 1
setup(name = "twoasis",
version = "%d.%d" % (major, minor),
description = "Twoasis - Two-phase flow solvers in FEniCS",
author = "Gaute Linga",
author_email = "gaute.linga@mn.uio.no",
url = 'https://github.com/gautelinga/twoasis.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 = ["twoasis",
"twoasis.problems",
"twoasis.problems.TPfracStep",
#"twoasis.problems.NSfracStep",
#"twoasis.problems.NSCoupled",
"twoasis.solvers",
"twoasis.solvers.TPfracStep",
#"twoasis.solvers.NSfracStep",
#"twoasis.solvers.NSfracStep.LES",
#"twoasis.solvers.NSfracStep.NNModel",
#"twoasis.solvers.NSCoupled",
"twoasis.common",
],
package_dir = {"twoasis": "twoasis"},
entry_points = {'console_scripts': ['twoasis=twoasis.run_twoasis:main',
'quickstats=twoasis.quickstats:main',
'merge_xdmf=twoasis.merge_xdmf:main'
]},
)