-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.13 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
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "practical_ml_with_pytorch"
version = "1.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"}
requires-python = ">=3.9.10"
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
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",
"numpy<2.0.0",
]
[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 = {}