forked from kthyng/tracpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (51 loc) · 1.78 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
#!/usr/bin/env python
"""
setup.py for tracpy -- python wrappers around TRACMASS
"""
import shutil
from setuptools import setup # to support "develop" mode
from numpy.distutils.core import setup, Extension
# ## total kludge:
# ## this copies extension built with makefile to package
# ## better to have setup.py build TRACMASS
# try:
# shutil.copyfile("src/tracmass.so", "tracpy/tracmass.so")
# except IOError:
# raise Exception("TRAMASS extesnion not built -- built it with the makefile in src")
tracmass_mod = Extension(name = "tracmass",
sources=['src/calc_dxyz.f95',
'src/cross.f95',
'src/loop_pos.f95',
'src/step.f95',
'src/vertvel.f95',
'src/calc_time.f95',
'src/diffusion.f95',
'src/pos.f95',
'src/turb.f95',
],
#extra_f90_compile_args=["-ffixed-form"],
)
# modules = ["tracpy/inout.py",
# "tracpy/op.py"
# "tracpy/plotting.py",
# "tracpy/run.py",
# "tracpy/tools.py",
# ]
print tracmass_mod
setup(
name = "tracpy",
version = "0.01",
author = "Kristen Thyng",
author_email = "",
description = ("python wrappers around TRACMASS"),
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 3 - Alpha",
# "Topic :: Utilities",
],
packages = ["tracpy"],
# py_modules = modules,
ext_package='tracpy',
ext_modules = [tracmass_mod],
scripts = [],
)