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
|
#!/usr/bin/env python3
# (C) Copyright 2020 ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
#
import io
import os
import os.path
import sys
from setuptools import Extension, find_packages, setup
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return io.open(file_path, encoding="utf-8").read()
version = None
for line in read("ecmwflibs/__init__.py").split("\n"):
if line.startswith("__version__"):
version = line.split("=")[-1].strip()[1:-1]
assert version
libdir = os.path.realpath("/usr/lib")
incdir = os.path.realpath("/usr/include")
libs = ["eccodes", "MagPlus"]
# https://docs.python.org/3/distutils/apiref.html
ext_modules = [
Extension(
"ecmwflibs._ecmwflibs",
sources=["ecmwflibs/_ecmwflibs.cc"],
language="c++",
libraries=libs,
library_dirs=[libdir],
include_dirs=[incdir, os.path.join(incdir, "magics")],
extra_link_args=["-Wl,-rpath," + libdir],
)
]
def shared(directory):
result = []
for path, dirs, files in os.walk(directory):
for f in files:
result.append(os.path.join(path, f))
return result
# Paths must be relative to package directory...
shared_files = ["versions.txt"]
shared_files += [x[len("install/") :] for x in shared("install/share/magics")]
shared_files += [x[len("ecmwflibs/") :] for x in shared("ecmwflibs/share/proj")]
shared_files += [x[len("ecmwflibs/") :] for x in shared("ecmwflibs/etc")]
shared_files += [x[len("ecmwflibs/") :] for x in shared("ecmwflibs/copying")]
if os.name == "nt":
for n in os.listdir("ecmwflibs"):
if n.endswith(".dll"):
shared_files.append(n)
# print(shared_files)
if "--universal" in sys.argv:
ext_modules = []
with open("ecmwflibs/_universal", "wt"):
pass
shared_files = ["_universal"]
setup(
name="ecmwflibs",
version=version,
author="ECMWF",
author_email="software.support@ecmwf.int",
license="Apache 2.0",
url="https://github.com/ecmwf/ecmwflibs",
description="Wraps ECMWF tools (experimental)",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
package_data={"": shared_files},
install_requires=[
"findlibs",
],
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
],
ext_modules=ext_modules,
)
|