forked from mikaem/fenicstools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1.09 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
#!/usr/bin/env python
from distutils.core import setup
# Version number
major = 2019
minor = 1
setup(name = "fenicstools",
version = "%d.%d" % (major, minor),
description = "fenicstools -- tools for postprocessing in FEniCS programs",
author = "Mikael Mortensen",
author_email = "mikaem@math.uio.no",
url = 'https://github.com/mikaem/fenicstools.git',
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ["fenicstools"],
package_dir = {"fenicstools": "fenicstools"},
package_data = {"fenicstools": ["probe/*.h",
"probe/*.cpp",
"fem/*.cpp",
"dofmapplotter/*.py",
"dofmapplotter/cpp/*.cpp"]},
)