-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (27 loc) · 978 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="pyaskit",
version="1.4.5",
packages=find_packages(),
description="AskIt: Unified programming interface for programming with large language models (GPT-3.5, GPT-4, Gemini, Claude, COHERE, Llama 2)",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Katsumi Okuda",
author_email="okuda@csail.mit.edu",
url="https://github.com/katsumiok/pyaskit",
python_requires=">=3.8",
install_requires=[
"openai>=1.12.0",
"unidecode",
"timeout-decorator",
"astor",
"typing_extensions",
],
classifiers=[
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
],
license="MIT",
keywords="openai,gpt,gpt-3,gpt-4,google,gemini,claude,cohere,llama,api,wrapper,framework,dsl,llm",
)