-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.cfg
70 lines (67 loc) · 1.86 KB
/
setup.cfg
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
[metadata]
name = ab
version = v3.3.0.2
description = Algorithm Base
long_description = file: README.md
author = fangliu, shuiniu, pengfei.wang
author_email = [email protected]
url = http://aliyun.com
[options]
setup_requires=
setuptools>=40.0
zip_safe = False
install_requires =
aliyun-python-sdk-core==2.13.35
aliyun-python-sdk-kms==2.15.0
APScheduler==3.7.0
pandas>=1.2
numpy>=1.20
simplejson==3.17.0
pymysql>0.6.1
cx_Oracle==8.0.0
# new API
sqlalchemy==1.3.18
# ODPS.execute_sql_cost requires at least 0.8.1
pyodps==0.9.1
redis==3.5.3
flask==1.1.4
markupsafe==2.0.1
gunicorn==20.0.4
py_eureka_client==0.7.4
setproctitle==1.1.10
hdfs==2.5.8
prometheus_client==0.8.0
requests==2.24.0
# thrift error: AttributeError: module 'six' has no attribute 'ensure_binary'
six==1.15.0
Jinja2==2.11.2
click==7.1.2
Cython>=0.29.21
pytest==5.4.3
nacos-sdk-python==0.1.6
pyyaml
test_requires =
pytest==5.4.3
pytest-xdist
pytest-repeat
pytest-timeout
# If using the setuptools-specific include_package_data argument, files specified by package_data will
# NOT be automatically added to the manifest unless they are listed in the MANIFEST.in file
# include_package_data = True
[options.extras_require]
# pyspark package is 200MB+, mark as optional
# install by "pip install ab[spark]"
# spark3 not supported yet
spark = pyspark<3
# hive requires native packages, which are harder to install:
# yum install -y cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib cyrus-sasl-gssapi cyrus-sasl-md5 cyrus-sasl-plain
# install by "pip install ab[hive]"
# https://github.com/cloudera/thrift_sasl/issues/24
hive =
pyhive[hive]
thrift-sasl==0.3.0
[options.entry_points]
console_scripts =
pyab=ab.apps.gunicorn:run
abt=ab.client.cli:cli
pytest11 = pyab_test=ab.tests.pytest_plugin