harry commited on
Commit ·
d723609
1
Parent(s): d29b67f
chore: add project config
Browse files- pyproject.toml +29 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool.poetry]
|
| 2 |
+
name = "mnist-classifier"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "MNIST classifier using PyTorch"
|
| 5 |
+
authors = ["Felix"]
|
| 6 |
+
license = "MIT"
|
| 7 |
+
readme = "README.md"
|
| 8 |
+
|
| 9 |
+
[tool.poetry.dependencies]
|
| 10 |
+
python = "^3.10"
|
| 11 |
+
torch = "^2.0.0"
|
| 12 |
+
torchvision = "^0.15.0"
|
| 13 |
+
pytorch-lightning = "^2.0.0"
|
| 14 |
+
wandb = "^0.15.0"
|
| 15 |
+
torchmetrics = "^1.0.0"
|
| 16 |
+
datasets = "^2.0.0"
|
| 17 |
+
huggingface-hub = "^0.16.0"
|
| 18 |
+
pyyaml = "^6.0"
|
| 19 |
+
|
| 20 |
+
[tool.poetry.group.dev.dependencies]
|
| 21 |
+
pytest = "^7.0.0"
|
| 22 |
+
black = "^23.0.0"
|
| 23 |
+
isort = "^5.12.0"
|
| 24 |
+
flake8 = "^6.0.0"
|
| 25 |
+
mypy = "^1.0.0"
|
| 26 |
+
|
| 27 |
+
[build-system]
|
| 28 |
+
requires = ["poetry-core"]
|
| 29 |
+
build-backend = "poetry.core.masonry.api"
|