-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
44 lines (36 loc) · 1.19 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
#! /usr/bin/env python
# Copyright (C) 2022-2023 Ajay Arunachalam <[email protected]>
# License: MIT, [email protected]
import pip
import logging
import pkg_resources
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = '0.0.1'
def readme():
with open('README.rst', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='gui-pandas-ai',
version=__version__,
packages=["gui-pandas-ai"],
description='GUIPandasAI - A Simple GUI-based APP for making DataFrames Coversational along with key data analysis utilities!!! - Bringing Generative AI capabilities into Pandas as Web Interface',
long_description = readme(),
long_description_content_type="text/markdown",
url='https://github.com/ajayarunachalam/gui-pandas-ai',
install_requires=[
"openai",
"pandasai==0.2.2",
"streamlit",
"lux",
"pandas-profiling",
"seaborn",
"lux-api",
"datapane",
],
license='MIT',
include_package_data=True,
author='Ajay Arunachalam',
author_email='[email protected]')