Skip to content

Commit b95ee36

Browse files
authored
Fix building packages and install requires (#7)
1 parent 73366fb commit b95ee36

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

setup.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,26 @@
1818

1919
from setuptools import setup
2020

21-
PACKAGES = ['paimon_python_api']
21+
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+
]
2235

2336
setup(
2437
name='paimon_python',
2538
version='0.9.0.dev1',
2639
packages=PACKAGES,
27-
install_requires=[],
40+
install_requires=install_requires,
2841
description='Apache Paimon Python API',
2942
author='Apache Software Foundation',
3043
author_email='[email protected]',

0 commit comments

Comments
 (0)