-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
55 lines (53 loc) · 1.99 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
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
# Reads the content of your README.md into a variable to be used in the setup below
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pandas_llm', # should match the package folder
version='0.0.6', # important for updates
license='MIT', # should match your chosen license
description='Conversational Pandas Dataframes',
long_description=long_description, # loads your README.md
long_description_content_type="text/markdown", # README.md is of type 'markdown'
author='DashyDash',
author_email='alessio@dashydash.com',
url='https://github.com/DashyDashOrg/pandas-llm',
project_urls = { # Optional
"Bug Tracker": "https://github.com/DashyDashOrg/pandas-llm/issues"
},
keywords=["pypi", "pandas-llm", "pandas", "llm", "ai", "openai", "chatgpt"], #descriptive meta-data
packages=find_packages(),
classifiers=[ # https://pypi.org/classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"aiohttp",
"aiosignal",
"async-timeout",
"attrs",
"certifi",
"charset-normalizer",
"frozenlist",
"idna",
"multidict",
"numpy",
"openai",
"pandas",
"python-dateutil",
"pytz",
"requests",
"RestrictedPython",
"six",
"tqdm",
"tzdata",
"urllib3",
"yarl",
],
download_url="https://github.com/DashyDashOrg/pandas-llm/releases/tag/v0.0.6",
)