forked from Dean-vA/MLEngineering_Capstone_Group3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 904 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
[tool.poetry]
name = "blank-to-bard"
version = "0.1.0"
description = ""
authors = ["Dean <[email protected]>",
"Luka <[email protected]>",
"Louis <[email protected]>",
"Charles <[email protected]>"]
readme = "README.md"
packages = [{include = "blank_to_bard", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
fastapi = "^0.100.0"
python-dotenv = "^1.0.0"
uvicorn = "^0.23.0"
sympy = "^1.12"
python-multipart = "^0.0.6"
google-cloud-aiplatform = "^1.28.0"
pandas = "^2.0.3"
tensorflow-io-gcs-filesystem = "0.30.0"
transformers = "^4.30.2"
tensorflow = "^2.13.0"
docker = "^6.1.3"
openai = "^0.27.8"
torch = "^2.0.1"
torchvision = "^0.15.2"
pillow = "^10.0.0"
matplotlib = "^3.7.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"