-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 1.03 KB
/
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
38
39
40
41
42
43
44
[tool.poetry]
name = "deep-learning-template"
version = "0.1.0"
description = "Deep Learning Project Template for Lightning and Hydra"
authors = ["Nathan Painchaud <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/nathanpainchaud/deep-learning-template"
[tool.poetry.dependencies]
python = "^3.8"
torch = "^1.8.1"
torchvision = "^0.9.1"
pytorch-lightning = "^1.3.1"
lightning-bolts = "^0.3.3"
hydra-core = "^1.0.6"
comet-ml = {version = "^3.9.1", extras = ["comet-ml"]}
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pre-commit = "^2.12.1"
isort = "^5.8.0"
black = "^21.5b1"
flake8 = "^3.9.2"
flake8-docstrings = "^1.6.0"
[tool.poetry.extras]
comet = ["comet-ml"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py38"]
exclude = "(.eggs|.git|.hg|.mypy_cache|.nox|.tox|.venv|.svn|_build|buck-out|build|dist)"
[tool.isort]
profile = "black"
line_length = 120
src_paths = ["deep_learning_template"]