-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
176 lines (158 loc) · 7.55 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# BSD 3-Clause License
#
# Copyright (c) 2017-2024, Science and Technology Facilities Council
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
# Authors: R. W. Ford, A. R. Porter, S. Siso and N. Nobre, STFC Daresbury Lab
# I. Kavcic and P. Elson, Met Office
# J. Henrichs, Bureau of Meteorology
"""Setup script. Used by easy_install and pip."""
import os
from setuptools import setup, find_packages
BASE_PATH = os.path.dirname(os.path.abspath(__file__))
SRC_PATH = os.path.join(BASE_PATH, "src")
PACKAGES = find_packages(where=SRC_PATH,
exclude=["psyclone.tests",
"psyclone.tests.test_files",
"psyclone.tests.*"])
NAME = 'PSyclone'
AUTHOR = ('Rupert Ford <[email protected]>, '
'Andrew Porter <[email protected]>, '
'Sergi Siso <[email protected]>')
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/stfc/psyclone'
DOWNLOAD_URL = 'https://github.com/stfc/psyclone'
DESCRIPTION = ('PSyclone - a compiler for Finite Element/Volume/Difference'
' DSLs in Fortran')
LONG_DESCRIPTION = '''\
PSyclone is a compiler for Fortran-embedded Domain Specific Languages
targetting Finite Element/Volume/Difference methods in earth-system
modelling.
See https://github.com/stfc/psyclone for more information.
'''
LICENSE = 'OSI Approved :: BSD 3-Clause License'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Fortran',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Utilities',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS']
# We read the version number ('__VERSION__') from version.py in the
# src/psyclone directory. Rather than importing it (which would require
# that PSyclone already be installed), we read it and then exec() it:
BASE_PATH = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(BASE_PATH, "src", "psyclone", "version.py"),
encoding="utf-8") as vfile:
exec(vfile.read()) # pylint:disable=exec-used
VERSION = __VERSION__ # pylint:disable=undefined-variable # noqa: F821
if __name__ == '__main__':
def get_files(directory, install_path, valid_suffixes):
'''Utility routine that creates a list of 2-tuples, each consisting of
the target installation directory and a list of files
(specified relative to the project root directory).
:param str directory: the directory containing the required files.
:param str install_path: the location where the files will be placed.
:param valid_suffixes: the suffixes of the required files.
:type valid_suffixes: [str]
:returns: a list of 2-tuples, each consisting of the target \
installation directory and a list of files (specified relative \
to the project root directory).
:rtype: [(str, [str])]
'''
examples = []
for dirpath, _, filenames in os.walk(directory):
if ("__" not in dirpath) and filenames:
rel_path = os.path.relpath(dirpath, directory)
files = []
for filename in filenames:
if any(filename.endswith(suffix) for suffix in
valid_suffixes):
files.append(
os.path.join(os.path.basename(install_path),
rel_path, filename))
if files:
examples.append((os.path.join(install_path, rel_path),
files))
return examples
# We have all of the example, tutorial and wrapper libraries files
# listed in MANIFEST.in but unless we specify them in the data_files
# argument of setup() they don't seem to get installed.
# Since the data_files argument doesn't accept wildcards we have to
# explicitly list every file we want.
# INSTALL_PATH controls where the files will be installed.
# VALID_SUFFIXES controls the type of files to include.
EGS_DIR = os.path.join(BASE_PATH, "examples")
INSTALL_PATH = os.path.join("share", "psyclone", "examples")
VALID_SUFFIXES = ["90", "py", "md", ".c", ".cl", "Makefile", ".mk"]
EXAMPLES = get_files(EGS_DIR, INSTALL_PATH, VALID_SUFFIXES)
TUTORIAL_DIR = os.path.join(BASE_PATH, "tutorial")
INSTALL_PATH = os.path.join("share", "psyclone", "tutorial")
VALID_SUFFIXES = [".ipynb"]
TUTORIAL = get_files(TUTORIAL_DIR, INSTALL_PATH, VALID_SUFFIXES)
LIBS_DIR = os.path.join(BASE_PATH, "lib")
INSTALL_PATH = os.path.join("share", "psyclone", "lib")
VALID_SUFFIXES = ["90", "sh", "py", "md", "Makefile", ".mk",
".jinja", "doxyfile"]
LIBS = get_files(LIBS_DIR, INSTALL_PATH, VALID_SUFFIXES)
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=(AUTHOR_EMAIL),
license=LICENSE,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
packages=PACKAGES,
package_dir={"": "src"},
install_requires=['pyparsing', 'fparser>=0.2.0', 'configparser',
'jsonschema', 'sympy', "Jinja2", 'termcolor',
'graphviz'],
extras_require={
'doc': ["sphinx", "sphinxcontrib.bibtex", "sphinx-tabs",
"sphinx_rtd_theme", "sphinx-autodoc-typehints", "autoapi"],
'test': ["flake8", "pylint", "pytest-cov", "pytest-xdist"],
},
include_package_data=True,
scripts=['bin/psyclone', 'bin/psyclone-kern', 'bin/psyad'],
data_files=[
('share/psyclone',
['config/psyclone.cfg'])]+EXAMPLES+TUTORIAL+LIBS,)