forked from pgalko/BambooAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (56 loc) · 1.45 KB
/
setup.py
File metadata and controls
58 lines (56 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='bambooai',
version='0.4.25',
description='A lightweight library for working with pandas dataframes using natural language queries',
long_description=long_description,
long_description_content_type="text/markdown",
author='Palo Galko',
packages=find_packages(),
include_package_data=True,
package_data={
'bambooai': ['messages/default_prompts.yaml'],
},
install_requires=[
'openai',
'tiktoken',
'pandas',
'numpy',
'pyarrow',
'matplotlib',
'seaborn',
'plotly==6.0.1',
'termcolor',
'newspaper3k',
'pinecone==6.0.2',
'selenium',
'google-generativeai',
'google-genai',
'groq',
'ollama',
'anthropic',
'mistralai',
'flask',
'ipython',
'nbformat',
'python-dotenv',
'lxml_html_clean',
'gunicorn',
'google-cloud-storage',
'statsmodels',
'scipy',
'scikit-learn',
'geopandas',
'yfinance',
'sweatstack'
],
python_requires=">=3.10",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)