-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
202 lines (176 loc) · 6.25 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import pprint
import re
import shutil
import subprocess
import sys
import warnings
from setuptools import setup
try:
import cython
except ImportError:
_HAVE_CYTHON = False
else:
_HAVE_CYTHON = True
assert cython # silence pep8
pkg_name = "finitediff"
url = "https://github.com/bjodah/" + pkg_name
license = "BSD"
def _path_under_setup(*args):
return os.path.join(*args)
release_py_path = _path_under_setup(pkg_name, "_release.py")
config_py_path = _path_under_setup(pkg_name, "_config.py")
env = None # silence pyflakes, 'env' is actually set on the next line
with open(config_py_path) as ifh:
exec(ifh.read())
for k, v in list(env.items()):
env[k] = os.environ.get("%s_%s" % (pkg_name.upper(), k), v)
_version_env_var = "%s_RELEASE_VERSION" % pkg_name.upper()
RELEASE_VERSION = os.environ.get(_version_env_var, "")
if len(RELEASE_VERSION) > 1 and RELEASE_VERSION[0] == "v":
TAGGED_RELEASE = True
__version__ = RELEASE_VERSION[1:]
else:
TAGGED_RELEASE = False
# read __version__ attribute from _release.py:
with io.open(release_py_path, encoding="utf-8") as ifh:
exec(ifh.read())
if __version__.endswith("git"):
try:
_git_version = (
subprocess.check_output(["git", "describe", "--dirty"])
.rstrip()
.decode("utf-8")
.replace("-dirty", ".dirty")
)
except subprocess.CalledProcessError:
warnings.warn(
"A git-archive is being installed - version information incomplete."
)
else:
if "develop" not in sys.argv:
warnings.warn("Using git to derive version: dev-branches may compete.")
__version__ = re.sub(
r"v([0-9.]+)-(\d+)-(\w+)", r"\1.post\2+\3", _git_version
) # .dev < '' < .post
basename = "_finitediff_c"
_src = {
ext: _path_under_setup(pkg_name, "%s.%s" % (basename, ext))
for ext in "c pyx".split()
}
if _HAVE_CYTHON and os.path.exists(_src["pyx"]):
# Possible that a new release of Python needs a re-rendered Cython source,
# or that we want to include possible bug-fix to Cython, disable by manually
# deleting .pyx file from source distribution.
USE_CYTHON = True
if os.path.exists(_src["c"]):
os.unlink(_src["c"]) # ensure c++ source is re-generated.
else:
USE_CYTHON = False
other_sources = [
os.path.join("src", "finitediff_c.c"),
os.path.join(
"finitediff", "external", "newton_interval", "src", "newton_interval.c"
),
]
cmdclass = {}
ext_modules = []
if (
len(sys.argv) > 1
and "--help" not in sys.argv[1:]
and not any(
arg in ("--help-commands", "egg_info", "clean", "--version")
for arg in sys.argv[1:]
)
):
# e.g. egg_info must not import from dependencies (pycompilation)
import numpy
include_dirs = [
os.path.join("finitediff", "external", "newton_interval", "include"),
os.path.join("finitediff", "include"),
numpy.get_include(),
]
from setuptools.extension import Extension
ext_modules = [
Extension(
"%s.%s" % (pkg_name, basename),
[_src["pyx" if USE_CYTHON else "c"]],
include_dirs=include_dirs,
)
]
if USE_CYTHON:
from Cython.Build import cythonize
ext_modules = cythonize(
ext_modules,
include_path=include_dirs,
compiler_directives={"embedsignature": True, "binding": True},
)
else:
ext_modules[0].sources += other_sources
if ext_modules[0].sources[0].startswith("/"):
raise ValueError("Absolute path not allowed: %s" % ext_modules[0].sources[0])
submodules = [
pkg_name + ".grid",
]
tests = [
pkg_name + ".tests",
pkg_name + ".grid.tests",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
]
with io.open(_path_under_setup(pkg_name, "__init__.py"), "rt", encoding="utf-8") as f:
short_description = f.read().split('"""')[1].split("\n")[1]
if not 10 < len(short_description) < 255:
warnings.warn("Short description from __init__.py proably not read correctly.")
with io.open(_path_under_setup("README.rst"), encoding="utf-8") as ifh:
long_description = ifh.read()
if not len(long_description) > 100:
warnings.warn("Long description from README.rst probably not read correctly.")
with io.open(_path_under_setup("AUTHORS"), "rt", encoding="utf-8") as ifh:
_author, _author_email = ifh.readline().split("<")
setup_kwargs = dict(
name=pkg_name,
version=__version__, # from release_py_path
description=short_description,
long_description=long_description,
author=_author.strip(),
author_email=_author_email.split(">")[0].strip(),
url=url,
license=license,
keywords=["finite-difference", "taylor series", "extrapolation", "interpolation"],
packages=[pkg_name] + submodules + tests,
include_package_data=True,
cmdclass=cmdclass,
ext_modules=ext_modules,
classifiers=classifiers,
setup_requires=["numpy"] + (["cython"] if USE_CYTHON else []),
install_requires=["numpy"],
extras_require={
"all": ["scipy", "pytest", "sphinx", "sphinx_rtd_theme", "numpydoc"]
},
)
if __name__ == "__main__":
try:
if TAGGED_RELEASE:
# Same commit should generate different sdist
# depending on tagged version (set FINITEDIFF_RELEASE_VERSION)
# this will ensure source distributions contain the correct version
shutil.move(release_py_path, release_py_path + "__temp__")
with open(release_py_path, "wt") as ofh:
ofh.write("__version__ = '{}'\n".format(__version__))
shutil.move(config_py_path, config_py_path + "__temp__")
with open(config_py_path, "wt") as fh:
fh.write("env = {}\n".format(pprint.pformat(env)))
setup(**setup_kwargs)
finally:
if TAGGED_RELEASE:
shutil.move(release_py_path + "__temp__", release_py_path)
shutil.move(config_py_path + "__temp__", config_py_path)