-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
35 lines (32 loc) · 920 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
29
30
31
32
33
34
35
import setuptools, glob
from pathlib import Path
#note: build this package with the following command:
#pip wheel --no-deps -w dist .
base_path = Path(__file__).parent
long_description = (base_path / "README.md").read_text()
setuptools.setup(
name="vercel-llm-api",
version="0.3.1",
author="ading2210",
license="GPLv3",
description="A reverse engineered API for the Vercel AI playground.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent"
],
python_requires=">=3.7",
package_dir={
"": "vercel-llm-api/src"
},
py_modules=["vercel_ai"],
include_package_data=True,
install_requires=[
"quickjs",
"curl_cffi"
],
url="https://github.com/ading2210/vercel-llm-api"
)