-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathsetup.py
68 lines (58 loc) · 2.47 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
#!/usr/bin/env python
# f90wrap: F90 to Python interface generator with derived type support
#
# Copyright James Kermode 2011-2018
#
# This file is part of f90wrap
# For the latest version see github.com/jameskermode/f90wrap
#
# f90wrap is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# f90wrap 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with f90wrap. If not, see <http://www.gnu.org/licenses/>.
#
# If you would like to license the source code under different terms,
# please contact James Kermode, [email protected]
import os
import sys
version = {}
with open('f90wrap/__init__.py') as fp:
exec(fp.read(), version)
__version__ = version['__version__']
try:
import setuptools
except ImportError:
pass
from numpy.distutils.core import setup, Extension
from numpy.distutils.system_info import get_info
fortran_t = Extension('f90wrap.sizeof_fortran_t', ['f90wrap/sizeoffortran.f90'])
f2py_info = get_info('f2py')
arraydata_ext = Extension(name='f90wrap.arraydata',
sources=['f90wrap/arraydatamodule.c'] + f2py_info['sources'],
include_dirs=f2py_info['include_dirs'])
description = 'Fortran to Python interface generator with derived type support'
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='f90wrap',
packages=['f90wrap', 'f90wrap/scripts'],
scripts=['scripts/f90doc', 'scripts/f90wrap', 'scripts/f2py-f90wrap'],
ext_modules=[fortran_t, arraydata_ext],
version=__version__,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author='James Kermode',
author_email='[email protected]',
url='https://github.com/jameskermode/f90wrap',
download_url=f'https://github.com/jameskermode/f90wrap/archive/refs/tags/v{__version__}.tar.gz',
install_requires=['numpy>=1.13,<1.24'],
python_requires=">=3.6")