-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·30 lines (27 loc) · 996 Bytes
/
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
#!/usr/bin/env python3
from distutils.core import setup
# Version number
major = 2018
minor = 1
setup(
name="leopart",
version="%d.%d" % (major, minor),
description="LEoPart -- FEniCS functionality for advecting and projecting "
"scattered particle data onto a finite element mesh",
author="Jakob Maljaars, Chris Richardson, Nathan Sime",
author_email=(
"j.m.maljaars@tudelft.nl/jakobmaljaars@gmail.com, "
"chris@bip.cam.co.uk, "
"nsime@carnegiescience.edu"
),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.0",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=["leopart"],
package_dir={"leopart": "./source"},
package_data={"leopart": ["cpp/*.h", "cpp/*.cpp", "cpp/*.so"]},
)