We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73366fb commit b95ee36Copy full SHA for b95ee36
setup.py
@@ -18,13 +18,26 @@
18
19
from setuptools import setup
20
21
-PACKAGES = ['paimon_python_api']
+PACKAGES = [
22
+ 'paimon_python_api',
23
+ 'java_based_implementation',
24
+ 'java_based_implementation.util'
25
+]
26
+
27
+install_requires = [
28
+ 'py4j==0.10.9.7',
29
+ 'python-dateutil>=2.8.0,<3',
30
+ 'pytz>=2018.3',
31
+ 'numpy>=1.22.4',
32
+ 'pandas>=1.3.0',
33
+ 'pyarrow>=5.0.0'
34
35
36
setup(
37
name='paimon_python',
38
version='0.9.0.dev1',
39
packages=PACKAGES,
- install_requires=[],
40
+ install_requires=install_requires,
41
description='Apache Paimon Python API',
42
author='Apache Software Foundation',
43
author_email='[email protected]',
0 commit comments