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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# flake8: noqa: E122
"""basemap -- Plot data on map projections with matplotlib."""
import io
import os
import re
import sys
import glob
import warnings
from setuptools import setup
from setuptools import find_namespace_packages
from setuptools.command.sdist import sdist
from setuptools.extension import Extension
def get_content(name, splitlines=False):
"""Return the file contents with project root as root folder."""
here = os.path.abspath(os.path.dirname(__file__))
path = os.path.join(here, name)
with io.open(path, "r", encoding="utf-8") as fd:
content = fd.read()
if splitlines:
content = [row for row in content.splitlines() if row]
return content
def get_version(pkgname):
"""Return package version without importing the file."""
here = os.path.abspath(os.path.dirname(__file__))
path = os.path.join(*[here, "src"] + pkgname.split(".") + ["__init__.py"])
with io.open(path, "r", encoding="utf-8") as fd:
pattern = r"""\n__version__[ ]*=[ ]*["']([^"]+)["']"""
return re.search(pattern, fd.read()).group(1)
def get_geos_install_prefix():
"""Return GEOS installation prefix or None if not found."""
env_candidate = os.environ.get("GEOS_DIR", None)
if env_candidate is not None:
candidates = [env_candidate]
else:
candidates = [os.path.expanduser("~/local"), os.path.expanduser("~"),
"/usr/local", "/usr", "/opt/local", "/opt", "/sw"]
# Prepare filename pattern to find the GEOS library.
extensions = {"win32": "dll", "cygwin": "dll", "darwin": "dylib"}
libext = extensions.get(sys.platform, "so*")
libname = "*geos_c*.{0}".format(libext)
libdirs = ["bin", "lib", "lib/x86_64-linux-gnu", "lib64"]
for prefix in candidates:
libfiles = []
for libdir in libdirs:
libfiles.extend(glob.glob(os.path.join(prefix, libdir, libname)))
hfile = os.path.join(prefix, "include", "geos_c.h")
if os.path.isfile(hfile) and libfiles:
return prefix
# At this point, the GEOS library was not found, so we throw a warning if
# the user is trying to build the library.
build_cmds = ("bdist_wheel", "build", "install")
if any(cmd in sys.argv[1:] for cmd in build_cmds):
warnings.warn(" ".join([
"Cannot find GEOS library and/or headers in standard locations",
"('{0}'). Please install the corresponding packages using your",
"software management system or set the environment variable",
"GEOS_DIR to point to the location where GEOS is installed",
"(for example, if 'geos_c.h' is in '/usr/local/include'",
"and 'libgeos_c' is in '/usr/local/lib', then you need to",
"set GEOS_DIR to '/usr/local'",
]).format("', '".join(candidates)), RuntimeWarning)
return None
class basemap_sdist(sdist): # pylint: disable=invalid-name
"""Custom `sdist` so that it will not pack DLLs on Windows if present."""
def run(self):
"""Custom `run` command."""
# Replace DLL data files and add GEOS build script.
orig_data_files = self.distribution.data_files
self.distribution.data_files = [
(".", glob.glob(os.path.join("utils", "*.py")))]
# Run the original `run` method and leave `data_files` as it was found.
try:
sdist.run(self)
finally:
self.distribution.data_files = orig_data_files
# Initialise include and library dirs.
data_files = []
include_dirs = []
library_dirs = []
runtime_library_dirs = []
# Define NumPy include dirs.
numpy_include_path = os.environ.get("NUMPY_INCLUDE_PATH", None)
if numpy_include_path is not None:
include_dirs.append(numpy_include_path)
else:
try:
import numpy
include_dirs.append(numpy.get_include())
except ImportError as err:
cmds = ("bdist_wheel", "build", "install")
if any(cmd in sys.argv[1:] for cmd in cmds):
warnings.warn("unable to locate NumPy headers", RuntimeWarning)
# Define GEOS include, library and runtime dirs.
geos_install_prefix = get_geos_install_prefix()
if geos_install_prefix is not None:
include_dirs.append(os.path.join(geos_install_prefix, "include"))
library_dirs.append(os.path.join(geos_install_prefix, "lib"))
library_dirs.append(os.path.join(geos_install_prefix, "lib64"))
runtime_library_dirs = library_dirs
if os.name == "nt" or sys.platform == "cygwin":
# On Windows:
# - DLLs get installed under `bin`.
# - We need to inject later the DLL in the wheel using `data_files`.
# - We do not use `runtime_library_dirs` as workaround for a
# `distutils` bug (http://bugs.python.org/issue2437).
library_dirs.append(os.path.join(geos_install_prefix, "bin"))
runtime_library_dirs = []
dlls = glob.glob(os.path.join(geos_install_prefix, "*", "*geos_c*.dll"))
if dlls:
data_files.append(("../..", sorted(dlls)))
# Define `_geoslib` extension module. It cannot be installed in the
# `mpl_toolkits.basemap` namespace or `Basemap` objects will not be pickleable.
ext_modules = [
Extension(**{
"name":
"_geoslib",
"sources": [
"src/_geoslib.pyx",
],
"libraries": [
"geos_c",
],
"include_dirs":
include_dirs,
"library_dirs":
library_dirs,
"runtime_library_dirs":
runtime_library_dirs,
}),
]
for ext in ext_modules:
ext.cython_directives = [
("language_level", str(sys.version_info[0])),
]
setup(**{
"name":
"basemap",
"version":
get_version("mpl_toolkits.basemap"),
"description":
"Plot data on map projections with matplotlib",
"long_description":
get_content("README.md"),
"long_description_content_type":
"text/markdown",
"author":
"Jeff Whitaker",
"author_email":
"jeffrey.s.whitaker@noaa.gov",
"maintainer":
"The Matplotlib development team",
"maintainer_email":
"matplotlib-users@python.org",
"license":
"MIT",
"license_files": [
"LICENSE",
"LICENSE.geos",
],
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
],
"keywords": [
"GIS",
"maps",
"plots",
],
"package_dir":
{"": "src"},
"packages":
find_namespace_packages(where="src"),
"ext_modules":
ext_modules,
"data_files":
data_files,
"python_requires":
", ".join([
">=3.9",
"<3.14",
]),
"install_requires":
get_content("dep/requirements.txt", splitlines=True),
"extras_require": {
"doc":
get_content("dep/requirements-doc.txt", splitlines=True),
"lint":
get_content("dep/requirements-lint.txt", splitlines=True),
"test":
get_content("dep/requirements-test.txt", splitlines=True),
"owslib":
get_content("dep/requirements-owslib.txt", splitlines=True),
},
"cmdclass": {
"sdist": basemap_sdist,
},
"project_urls": {
"Homepage":
"https://github.com/matplotlib/basemap",
"Documentation":
"https://matplotlib.org/basemap",
"Repository":
"https://github.com/matplotlib/basemap.git",
"Issues":
"https://github.com/matplotlib/basemap/issues",
},
})
|