forked from Roche/pyreadstat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
142 lines (125 loc) · 5.68 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
# #############################################################################
# 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]
if PY_MAJOR_VERSION < 3 and os.name == 'nt':
raise Exception("Python 2 is not supported on Windows.")
cyver = int(Cython.__version__.split(".")[1])
if cyver < 28:
msg = "Cython version 0.28 or newer required"
raise Exception(msg)
ext = '.pyx'
dir_path = os.path.dirname(os.path.realpath(__file__))
source_dir_root = "src"
# 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]
# libraries and data (in this case data are windows dlls)
# altough these are win specific we want them to be in the source distribution
# therefore we will always include them.
data_files = []
libraries=["m", "z"]
# Windows
if os.name == 'nt':
is64bit = sys.maxsize > 2 ** 32
win_install_dir = "Lib/site-packages/pyreadstat"
if is64bit:
data_folder = "win_libs/64bit/"
data_files = [(win_install_dir, [data_folder + "zlib1.dll", data_folder + "libiconv-2.dll"])]
else:
data_folder = "win_libs/32bit/"
data_files = [(win_install_dir, [data_folder + "zlib1.dll", data_folder + "libiconv-2.dll", data_folder +"libwinpthread-1.dll", data_folder + "libgcc_s_dw2-1.dll"])]
#data_files = [("", [data_folder + "zlib1.dll", data_folder + "libiconv-2.dll"])]
libraries.append("iconv")
else:
_platform = sys.platform
# Mac: iconv needs to be linked statically
if _platform.lower().startswith("darwin"):
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 = [source_dir_root] + source_dirs + ["pyreadstat", "."],
libraries=libraries,
extra_compile_args=["-Ireadstat", "-DHAVE_ZLIB=1"] ),
Extension("pyreadstat._readstat_parser",
sources=["pyreadstat/_readstat_parser" + ext] + sources,
include_dirs = [source_dir_root] + source_dirs + ["pyreadstat", "."],
libraries=libraries,
extra_compile_args=["-Ireadstat", "-DHAVE_ZLIB=1"]),
Extension("pyreadstat._readstat_writer",
sources=["pyreadstat/_readstat_writer" + ext] + sources,
include_dirs=[source_dir_root] + source_dirs + ["pyreadstat", "."],# + [numpy.get_include()],
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 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 data frames."
setup(
name='pyreadstat',
version='1.1.4',
description=short_description,
author="Otto Fajardo",
author_email="[email protected]",
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",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Environment :: Console",
],
ext_modules=extensions,
packages=["pyreadstat"],
data_files=data_files,
install_requires=['pandas>=1.2.0'],
license="Apache License Version 2.0",
)