forked from Cambridge-ICCS/practical-ml-with-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 990 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
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ml_workshop"
version = "0.0.0"
description = "ICCS ML workshop."
authors = [
{ name="Jim Denholm", email="[email protected]" },
{ name="Jack Atkinson", email="[email protected]" },
]
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.9.10"
dependencies = [
"torch>=2.0",
"torchvision>=0.13",
"palmerpenguins>=0.1.4",
"pandas",
"ipykernel",
"scikit-image",
"notebook",
"torch_tools @ git+https://github.com/jdenholm/TorchTools.git",
"matplotlib",
]
[project.optional-dependencies]
# test = [
# "pytest>=7.2.0",
# ]
lint = [
"black>=22.12.0",
# "pylint",
"pydocstyle",
"mypy>=1.0.0",
"jupyter-black",
]
[project.urls]
"Homepage" = "https://github.com/Cambridge-ICCS/ml-training-material"
"Bug Tracker" = "https://github.com/Cambridge-ICCS/ml-training-material/issues"
[tool.setuptools]
package-dir = {}