-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 791 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 = "diffusion-models"
version = "0.1.0"
description = "A guide to working with diffusion models"
authors = [
{ name = "Ryan Daniels"},
{ name = "Fin Griffin"},
]
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"matplotlib==3.9.0",
"seaborn==0.13.2",
"diffusers==0.28.2",
"transformers==4.41.2",
"scikit-learn>=1.5.2",
"ipykernel>=6.30.1",
]
[dependency-groups]
dev = [
"mkdocs>=1.6.1,<2.0.0",
"mkdocs-pdf>=0.1.2",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material>=9.5.44,<10.0.0",
"mkdocstrings>=0.27.0,<0.28.0",
"pre-commit>=4.3.0",
]
[tool.setuptools]
packages = ["diffusion_models"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"