-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 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
from setuptools import setup, find_packages
setup(
name="one-api-tool",
version="1.3.0",
packages=find_packages(),
install_requires=[
# Add your library's dependencies here
"pydantic",
"openai>=1.2.3",
"anthropic>=0.6.0",
"huggingface_hub",
"requests",
"httpx",
"rich",
"inquirer",
"Jinja2",
"aiohttp",
"tiktoken",
"python-dotenv",
"tqdm",
"tokenizers",
"docstring_parser"
],
entry_points={
"console_scripts": [
"one-api=oneapi.commands.one_api_requst:main"
]
},
description="Use only one line of code to call multiple model APIs similar to ChatGPT. Currently supported: Azure OpenAI Resource endpoint API, OpenAI Official API, and Anthropic Claude series model API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/muximus3/OneAPI",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)