-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
executable file
·79 lines (73 loc) · 2.68 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
#
# Copyright (C) 2009-2011 University of Edinburgh
#
# This file is part of IMUSim.
#
# IMUSim is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# IMUSim is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with IMUSim. If not, see <http://www.gnu.org/licenses/>.
depsOK = True
try:
import numpy
except ImportError:
depsOK = False
print "NumPy should be installed first from suitable binaries."
print "See http://numpy.scipy.org/"
try:
import scipy
except ImportError:
depsOK = False
print "SciPy should be installed first from suitable binaries."
print "See http://www.scipy.org/"
try:
import matplotlib
except ImportError:
depsOK = False
print "Matplotlib should be installed first from suitable binaries."
print "See http://matplotlib.sf.net/"
try:
import mayavi
except ImportError:
try:
import enthought.mayavi
except ImportError:
depsOK = False
print "Mayavi should be installed first from suitable binaries."
print "See http://code.enthought.com/projects/mayavi/"
try:
from setuptools import setup, find_packages
from setuptools.extension import Extension
if depsOK:
setup(
name = "imusim",
version = "0.2",
author = "Alex Young and Martin Ling",
license = "GPLv3",
url = "http://www.imusim.org/",
install_requires = ["simpy>=2.3,<3", "pyparsing"],
packages = find_packages(),
include_dirs = [numpy.get_include()],
ext_modules = [
Extension("imusim.maths.quaternions",
['imusim/maths/quaternions.c']),
Extension("imusim.maths.quat_splines",
['imusim/maths/quat_splines.c']),
Extension("imusim.maths.vectors",['imusim/maths/vectors.c']),
Extension("imusim.maths.natural_neighbour",[
'imusim/maths/natural_neighbour/utils.c',
'imusim/maths/natural_neighbour/delaunay.c',
'imusim/maths/natural_neighbour/natural.c',
'imusim/maths/natural_neighbour.c'])]
)
except ImportError:
print "Setuptools must be installed - see http://pypi.python.org/pypi/setuptools"