-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathsetup.py
More file actions
180 lines (158 loc) · 6.9 KB
/
setup.py
File metadata and controls
180 lines (158 loc) · 6.9 KB
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
# #############################################################################
# Copyright 2018 Hoffmann-La Roche
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# #############################################################################
import setuptools
from distutils.core import setup, Extension
import os
import sys
import Cython
from Cython.Build import cythonize
PY_MAJOR_VERSION = sys.version_info[0]
PY_MINOR_VERSION = sys.version_info[1]
if PY_MAJOR_VERSION < 3 and os.name == 'nt':
raise Exception("Python 2 is not supported on Windows.")
cyver = int(Cython.__version__.split(".")[0])
if cyver < 3:
msg = "Cython version 3 or newer required"
raise Exception(msg)
ext = '.pyx'
dir_path = os.path.dirname(os.path.realpath(__file__))
source_dir_root = "src"
python_dir = sys.exec_prefix
# Get a list of C source files and C source directories but omitting certain things
omitted_sources = [
"mod_xlsx.c",
"mod_csv_reader.c",
"readstat.c"]
omitted_source_dirs = ["src/test", "src/bin", "src/fuzz"]
sources = list()
for dirname, _ , filenames in os.walk(source_dir_root):
if dirname not in omitted_source_dirs:
for filename in filenames:
if filename.endswith("c") and filename not in omitted_sources:
cursource = os.path.join(".", dirname, filename)
sources.append(cursource)
source_dirs = [dirname for dirname, _, _ in os.walk(source_dir_root) if dirname not in omitted_source_dirs]
def is_ubuntu():
"""
Checks if the current operating system is Ubuntu.
This function is safe to run on any OS. It returns False if not on Linux
or if the distribution is not Ubuntu.
"""
if not sys.platform.startswith('linux'):
return False
try:
with open('/etc/os-release', 'r', encoding='utf-8') as f:
for line in f:
if line.strip().startswith('ID='):
# The value might have quotes, which we strip
distro_id = line.split('=', 1)[1].strip().strip('"\'')
if distro_id == 'ubuntu':
return True
except FileNotFoundError:
# If /etc/os-release doesn't exist, it's not a standard modern Linux.
return False
return False
def is_python_lt_14():
if PY_MAJOR_VERSION >= 3 and PY_MINOR_VERSION < 14:
return True
return False
data_files = []
libraries = []
include_dirs = [source_dir_root] + source_dirs + ["pyreadstat", "."]
library_dirs = []
# Windows
# On Windows we have two possible setups: the user has included the static libraries in win_libs/64bit
# Or the user is going to use the Conda forge versions of those. See the windows compilation document
# for more details
if os.name == 'nt':
is64bit = sys.maxsize > 2 ** 32
# The user included the compiled static libraries
if os.path.isfile("win_libs/64bit/libiconv-static.lib") and os.path.isfile("win_libs/64bit/libz-static.lib"):
libraries.extend(["libiconv-static", "libz-static"])
include_dirs.append("win_libs/64bit")
library_dirs.append("win_libs/64bit")
# conda forge libraries
else:
libraries.extend(["iconv", "zlib"])
include_dirs.append(os.path.join(python_dir, "Library", "include"))
library_dirs.append(os.path.join(python_dir, "Library", "bin"))
library_dirs.append(os.path.join(python_dir, "Library", "lib"))
else:
libraries.extend(["m", "z"])
_platform = sys.platform
# Mac and ubuntu: iconv needs to be linked statically
if _platform.lower().startswith("darwin") or (is_ubuntu() and is_python_lt_14()):
libraries.append("iconv")
# Extensions
sources.sort()
extensions = [Extension("pyreadstat.pyreadstat",
sources=["pyreadstat/pyreadstat" + ext] + sources,
# this dot here is important for cython to find the pxd files
include_dirs =include_dirs,
libraries=libraries,
library_dirs=library_dirs,
extra_compile_args=["-Ireadstat", "-DHAVE_ZLIB=1"] ),
Extension("pyreadstat._readstat_parser",
sources=["pyreadstat/_readstat_parser" + ext] + sources,
include_dirs = include_dirs,
library_dirs=library_dirs,
libraries=libraries,
extra_compile_args=["-Ireadstat", "-DHAVE_ZLIB=1"]),
Extension("pyreadstat._readstat_writer",
sources=["pyreadstat/_readstat_writer" + ext] + sources,
include_dirs=include_dirs,# + [numpy.get_include()],
library_dirs=library_dirs,
libraries=libraries,
extra_compile_args=["-Ireadstat", "-DHAVE_ZLIB=1"])
]
# By setting this compiler directive, cython will
# embed signature information in docstrings. Sphinx then knows how to extract
# and use those signatures.
for e in extensions:
e.cython_directives = {"embedsignature": True}
# let's use cython with force so that it always recompiles in case
# somebody is switching between python 2 and 3
extensions = cythonize(extensions, compile_time_env={'PY_MAJOR_VERSION':PY_MAJOR_VERSION}, force=True)
long_description = """ A Python package to read and write SAS
(sas7bdat, sas7bcat, xport/xpt), SPSS (sav, zsav, por) and Stata (dta) files into/from pandas and polars data frames. It is a wrapper
around the C library readstat.<br>
Please visit out project home page for more information:<br>
https://github.com/Roche/pyreadstat"""
short_description = "Reads and Writes SAS, SPSS and Stata files into/from pandas and polars data frames."
setup(
name='pyreadstat',
version='1.3.3',
description=short_description,
author="Otto Fajardo",
author_email="pleasecontactviagithub@notvalid.com",
url="https://github.com/Roche/pyreadstat",
download_url="https://github.com/Roche/pyreadstat/dist",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Cython",
"Programming Language :: C",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Environment :: Console",
],
ext_modules=extensions,
packages=["pyreadstat"],
data_files=data_files,
install_requires=['narwhals>=2.10.1', 'numpy'],
license="Apache-2.0",
)