forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
102 lines (89 loc) · 2.87 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
#!/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.
import os
from setuptools import setup, find_packages
import versioneer
LONG_DESCRIPTION = """
Ibis is a productivity-centric Python big data framework.
See http://ibis-project.org
"""
impala_requires = [
'hdfs>=2.0.0',
'impyla>=0.13.7',
'sqlalchemy>=1.0.0',
'thrift<=0.9.3',
]
sqlite_requires = ['sqlalchemy>=1.0.0']
postgres_requires = sqlite_requires + ['psycopg2']
kerberos_requires = ['requests-kerberos']
visualization_requires = ['graphviz']
pandas_requires = ['multipledispatch']
all_requires = (
impala_requires +
postgres_requires +
kerberos_requires +
visualization_requires +
pandas_requires
)
develop_requires = all_requires + [
'click',
'flake8',
'pytest',
]
with open('requirements.txt', 'rt') as f:
install_requires = list(map(str.strip, f))
setup(
name='ibis-framework',
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=install_requires,
extras_require={
'all': all_requires,
'develop': develop_requires,
'develop:python_version < "3"': develop_requires + [
'thriftpy<=0.3.9', 'mock',
],
'develop:python_version >= "3"': develop_requires,
'impala': impala_requires,
'impala:python_version < "3"': impala_requires + ['thriftpy<=0.3.9'],
'kerberos': kerberos_requires,
'postgres': postgres_requires,
'sqlite': sqlite_requires,
'visualization': visualization_requires,
'pandas': pandas_requires,
},
scripts=[
os.path.relpath(
os.path.join('scripts', 'test_data_admin.py'),
os.path.dirname(__file__),
)
],
description="Productivity-centric Python Big Data Framework",
long_description=LONG_DESCRIPTION,
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.7',
'Topic :: Scientific/Engineering',
],
license='Apache License, Version 2.0',
maintainer="Wes McKinney",
maintainer_email="wes@cloudera.com"
)