-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 865 Bytes
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
[project]
name = "frogbox"
authors = [
{name = "Simon J. Larsen", email = "simonhffh@gmail.com"},
]
description = "An opinionated machine learning framework"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
license-files = ["LICENSE"]
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"accelerate>=1.12.0",
"torchmetrics>=1.8.2",
"pydantic>=2.12.4",
"tqdm>=4.67.1",
"jinja2>=3.1.6",
"click>=8.3.1",
"PyYAML>=6.0.3",
]
[project.urls]
Homepage = "https://github.com/SimonLarsen/frogbox"
Issues = "https://github.com/SimonLarsen/frogbox/issues"
[project.scripts]
frogbox = "frogbox.cli:cli"
[tool.setuptools.dynamic]
version = {attr = "frogbox.__version__"}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"