-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (24 loc) · 913 Bytes
/
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
from setuptools import setup, find_packages
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup_params = dict(
name = 'pysqream',
version = '5.3.0',
description = 'DB-API connector for SQream DB',
long_description = long_description,
url = "https://github.com/SQream/pysqream",
author = "SQream",
author_email = "[email protected]",
packages = find_packages(),
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
keywords = 'database db-api sqream sqreamdb',
python_requires = '>=3.9',
install_requires=["numpy==1.26.4", "packaging>=23.0", "pyarrow==15.0.0",
"pandas==2.2.2", "Faker>=26.0.0", "numexpr==2.8.4"]
)
if __name__ == '__main__':
setup(**setup_params)