-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.37 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
import codecs
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
DESCRIPTION = "Python snowflake client for Lepaya Data team"
LONG_DESCRIPTION = (
"A python package that allows to interact with the snowflake api and load/extract data from Snowflake"
)
# Setting up
setup(
name="data_snowflake_client",
version="6.1.0",
author="Humaid Mollah",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=[
"data-slack-client @ git+https://github.com/Lepaya/data-slack-client",
"pandas~=2.2",
"pyarrow~=17.0",
"snowflake-connector-python~=3.5",
"structlog~=22.3",
"pydantic~=1.9",
"cryptography~=42.0",
],
keywords=["python", "snowflake", "dataframe", "extract", "load", "table"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Lepaya Python Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)