forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
144 lines (118 loc) · 4.1 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
#!/usr/bin/env python
# Copyright 2014 Cloudera Inc.
#
# 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.
COMMS_EXT_ENABLED = False
requirements = []
extensions = []
cmdclass = {}
if COMMS_EXT_ENABLED:
requirements.append('cython >= 0.21')
from Cython.Distutils import build_ext
from Cython.Build import cythonize
import Cython
if Cython.__version__ < '0.19.1':
raise Exception('Please upgrade to Cython 0.19.1 or newer')
cmdclass['build_ext'] = build_ext
from setuptools import setup # noqa
import os # noqa
import sys # noqa
from distutils.extension import Extension # noqa
from distutils.command.clean import clean as _clean # noqa
class clean(_clean):
def run(self):
_clean.run(self)
for x in []:
try:
os.remove(x)
except OSError:
pass
cmdclass['clean'] = clean
with open('requirements.txt') as f:
file_reqs = f.read().splitlines()
requirements = requirements + file_reqs
PY2 = sys.version_info[0] == 2
PY26 = sys.version_info[0] == 2 and sys.version_info[1] == 6
if PY26:
requirements.append('argparse')
requirements.append('unittest2')
if PY2:
requirements.append('mock')
if COMMS_EXT_ENABLED:
import numpy as np
common_include = ['ibis/src', np.get_include()]
comms_ext_libraries = []
if sys.platform != 'darwin':
# libuuid is available without additional linking as part of the base
# BSD system on OS X, needs to be installed and linked on Linux,
# though.
comms_ext_libraries.append('uuid')
comms_ext = Extension('ibis.comms',
['ibis/comms.pyx',
'ibis/src/ipc_support.c'],
depends=['ibis/src/ipc_support.h'],
libraries=comms_ext_libraries,
include_dirs=common_include)
extensions = cythonize([comms_ext])
LONG_DESCRIPTION = """
Ibis is a productivity-centric Python big data framework.
See http://ibis-project.org
"""
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Cython',
'Topic :: Scientific/Engineering',
]
import versioneer # noqa
setup(
name='ibis-framework',
packages=['ibis',
'ibis.expr',
'ibis.expr.tests',
'ibis.hive',
'ibis.hive.tests',
'ibis.impala',
'ibis.impala.tests',
'ibis.spark',
'ibis.spark.tests',
'ibis.sql',
'ibis.sql.tests',
'ibis.sql.presto',
'ibis.sql.presto.tests',
'ibis.sql.redshift',
'ibis.sql.redshift.tests',
'ibis.sql.sqlite',
'ibis.sql.sqlite.tests',
'ibis.sql.vertica',
'ibis.sql.vertica.tests',
'ibis.tests'],
version=versioneer.get_version(),
package_data={'ibis': ['*.pxd', '*.pyx']},
ext_modules=extensions,
cmdclass=versioneer.get_cmdclass(),
install_requires=requirements,
extras_require={'kerberos': ['requests-kerberos']},
description="Productivity-centric Python Big Data Framework",
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
license='Apache License, Version 2.0',
maintainer="Wes McKinney",
maintainer_email="wes@cloudera.com"
)