-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 2.04 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 2.04 KB
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
45
46
47
from setuptools import setup, find_packages
setup(
name="datavyn",
version="0.1.0",
author="DataVyn Labs",
author_email="contact@datavynlabs.com",
description="Simple connectors to load data from Kaggle, databases, cloud, and more.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/datavynlabs/datavyn",
packages=find_packages(),
install_requires=[
"pandas", # core — used by all connectors
],
extras_require={
"kaggle" : ["kaggle"], # Kaggle connector
"snowflake" : ["snowflake-connector-python"], # Snowflake connector
"postgres" : ["psycopg2-binary"], # PostgreSQL connector
"mongodb" : ["pymongo"], # MongoDB connector
"mysql" : ["mysql-connector-python"], # MySQL connector
"aws" : ["boto3"], # AWS S3 connector
"gcs" : ["google-cloud-storage"], # Google Cloud Storage
"bigquery" : ["google-cloud-bigquery"], # Google BigQuery
"all" : [ # Install everything
"kaggle",
"snowflake-connector-python",
"psycopg2-binary",
"pymongo",
"mysql-connector-python",
"boto3",
"google-cloud-storage",
"google-cloud-bigquery",
],
},
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
],
keywords="datavyn kaggle snowflake postgresql mongodb mysql aws s3 bigquery gcs connector dataframe",
)