-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.11 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cloudy_warehouses",
version="0.1.0.1",
author="Hashmap, Inc",
author_email="[email protected]",
description="Cloudy Warehouses allows for stream-lined interaction between pandas and cloud data platform providers.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hashmapinc/oss/cloudy_warehouses",
packages=setuptools.find_packages(),
package_data={
"cloudy_warehouses": ["configurations/default_configuration_profiles.yml"],
},
install_requires=[
'pyarrow==0.17.1',
'pandas==1.1.4',
'pyyaml==5.3.1',
'snowflake-connector-python==2.3.6',
'snowflake-sqlalchemy==1.2.4',
'SQLAlchemy==1.3.20'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
],
python_requires='>=3.7',
)