-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
37 lines (35 loc) · 994 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fireworks-poe-bot"
version = "0.0.1"
description = "Infrastructure for building poe.com bots based off of fireworks.ai hosted models"
authors = [{ name = "James Reed", email = "[email protected]" }]
readme = "README.md"
keywords = ["poe", "bot", "fastapi"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"fastapi",
"httpx",
"httpx-sse",
"pydantic>2",
"sse-starlette>=1.0.0",
"fastapi-poe>=0.0.29",
"fireworks-ai>=0.12.1",
"uvicorn>=0.23.2",
"typing_extensions>=4.0.0",
"opencv-python",
"numpy",
"google-cloud-storage",
"qrcode",
"aiohttp",
]
[project.scripts]
fireworks_poe_bot = "fireworks_poe_bot.__main__:main"