forked from martinal/instant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·78 lines (68 loc) · 2.56 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
#!/usr/bin/env python
import sys, platform
from os.path import join, split, pardir
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (2, 7):
print("Python 2.7 or higher required, please upgrade.")
sys.exit(1)
scripts = [join("scripts", "instant-clean"),
join("scripts", "instant-showcache")]
if platform.system() == "Windows" or "bdist_wininst" in sys.argv:
# In the Windows command prompt we can't execute Python scripts
# without a .py extension. A solution is to create batch files
# that runs the different scripts.
batch_files = []
for script in scripts:
batch_file = script + ".bat"
f = open(batch_file, "w")
f.write('python "%%~dp0\%s" %%*\n' % split(script)[1])
f.close()
batch_files.append(batch_file)
scripts.extend(batch_files)
version = "2017.1.0.dev0"
url = "https://bitbucket.org/fenics-project/instant/"
tarball = None
if not 'dev' in version:
tarball = url + "downloads/instant-%s.tar.gz" % version
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Scientific/Engineering :: Mathematics
Topic :: Software Development :: Libraries :: Python Modules
"""
requires = ["numpy", "six"]
if sys.version_info[0] == 2:
requires.append("subprocess32")
setup(name="instant",
version=version,
description="Instant Inlining of C/C++ in Python",
author="Magne Westlie, Kent-Andre Mardal, Martin Sandve Alnes and Ilmar M. Wilbers",
author_email="[email protected]",
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
url=url,
download_url=tarball,
packages=['instant'],
package_dir={'instant': 'instant'},
package_data={'': [join('swig', 'numpy.i')]},
scripts=scripts,
install_requires=requires,
data_files=[(join("share", "man", "man1"),
[join("doc", "man", "man1", "instant-clean.1.gz"),
join("doc", "man", "man1", "instant-showcache.1.gz")])]
)