-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 750 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name="magic_analyst",
version="0.1.0",
author="David Okpare",
author_email="okparedave@gmail.com",
description="IPython extension for data analysis on datasets from Kaggle",
long_description="IPython extension that allows searching, downloading, extracting and performing EDA on datasets "
"from Kaggle",
url="https://github.com/DaveOkpare/magic-analyst",
keywords="ipython, jupyter",
packages=find_packages(),
install_requires=[
"ipython>=8.12.0",
"kaggle==1.5.13",
"langchain==0.0.131",
"openai==0.27.4",
"jupyter",
"python-dotenv==1.0.0",
"SQLAlchemy==1.4.47",
"pandas==2.0.0",
],
)