-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 900 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
[tool.poetry]
name = "pytorch-starter-project"
version = "1.0.0"
description = ""
authors = ["Yash Gorana <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.1"
numpy = "^1.24.2"
pandas = "^1.5.3"
matplotlib = "^3.7.1"
seaborn = "^0.12.2"
scikit-learn = "^1.2.2"
click = "^8.1.3"
requests = "^2.28.2"
ipykernel = "^6.22.0"
mlflow-skinny = "^2.2.2"
[tool.poetry.group.pytorch.dependencies]
lightning = "2.0.0"
timm = "^0.6.12"
transformers = "^4.27.2"
pydantic = "<=1.10.4" # Fix lightning https://github.com/Lightning-AI/lightning/issues/17106
fastapi = "0.88" # Fix lightning https://github.com/Lightning-AI/lightning/issues/17106
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^23.1.0"}
flake8 = "^6.0.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"