-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
59 lines (56 loc) · 1.79 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
from setuptools import setup, find_packages
VERSION = '0.3.2'
DESCRIPTION = 'Quokka'
LONG_DESCRIPTION = """
Dope way to do cloud analytics\n
Check out https://github.com/marsupialtail/quokka\n
or https://marsupialtail.github.io/quokka/\n
"""
# Setting up
setup(
name="pyquokka",
version=VERSION,
author="Tony Wang",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
package_data = {"":[ "redis.conf", "leader_startup.sh", "common_startup.sh", "disk_setup.sh", "leader_start_ray.sh"]},
install_requires=[
'cffi',
'pyarrow',
'duckdb>=0.6.0',
'redis',
'boto3',
'numpy',
'pandas',
#'protobuf==3.20.*', uncomment if Ray does not work on Apple
'protobuf',
'ray>=2.0.0',
'psutil',
'polars>=0.16.17', # latest version of Polars generally
'sqlglot>=11.4.2',
'graphviz',
'tqdm',
'aiohttp',
'botocore',
'threadpoolctl'
], # add any additional packages that
entry_points = {
'console_scripts': [
'print = pyquokka.utils:print_hello'
],
},
extra_requires = {
"datalake" : ["pyiceberg", "deltalake"],
"advanced" : ["ldbpy"]
},
license='http://www.apache.org/licenses/LICENSE-2.0',
keywords=['python'],
classifiers= [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
]
)