Skip to content

Commit f80716a

Browse files
committed
generated file: pyproject.toml
1 parent 46df520 commit f80716a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Diff for: pyproject.toml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[tool.poetry]
2+
name = "openai-api-client"
3+
version = "0.1.0"
4+
description = "A simple API client for interacting with OpenAI's API"
5+
authors = ["Your Name <your@email.com>"]
6+
license = "MIT"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.9"
11+
fastapi = "^0.115.4"
12+
uvicorn = "^0.32.0"
13+
pydantic = "^2.9.2"
14+
openai = "^1.53.0"
15+
sqlalchemy = "^2.0.36"
16+
psycopg2-binary = "^2.9.10"
17+
alembic = "^1.13.3"
18+
pyjwt = "^2.9.0"
19+
requests = "^2.32.3"
20+
logging = "^0.4.9.6"
21+
prometheus_client = "^0.21.0"
22+
23+
[tool.poetry.dev-dependencies]
24+
flake8 = "^7.1.1"
25+
pytest = "^8.3.3"
26+
black = "^24.10.0"
27+
28+
[build-system]
29+
requires = ["poetry-core>=1.0.0"]
30+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)