-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1.21 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="functional-functions",
version="0.6.4",
author="Lawrence Chin",
author_email="[email protected]",
description="Commonly used functions by the Compass FBI Team",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/UrbanCompass/Functional-Functions",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"snowflake-connector-python == 2.7.11",
"snowflake-sqlalchemy <= 1.4.41",
"sqlalchemy == 1.4.41",
"pandas == 1.4.3",
"numpy >= 1.19.4",
"pytz >= 2020.4",
"pyarrow==8.0.0",
"boto3 >= 1.18.54",
"redshift-connector >= 2.0.902",
"databricks-sql-connector >= 2.0.0b1",
"python-dotenv>=0.19.0",
],
include_package_data=True,
package_data={"": ["settings.py.sample", "ff_classes.py", "creds.env.sample"]},
)