-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (80 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
87 lines (80 loc) · 1.77 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "hackable_diffusion"
description = "Hackable Diffusion is a library for custom diffusion models."
readme = "README.md"
requires-python = ">=3.13"
license = {file = "LICENSE"}
authors = [{name = "hackable_diffusion authors"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
]
keywords = []
# pip dependencies of the project
dependencies = [
"absl-py",
"aiofiles",
"chex",
"einops",
"etils",
"flax",
"fsspec",
"humanize",
"immutabledict",
"importlib_resources",
"jax",
"jaxtyping",
"markdown-it-py",
"mdurl",
"ml_dtypes",
"mock",
"msgpack",
"nest-asyncio",
"numpy",
"opt_einsum",
"optax",
"orbax-checkpoint",
"protobuf",
"psutil",
"pygments",
"pyyaml",
"rich",
"scipy",
"simplejson",
"tensorstore",
"toolz",
"treescope",
"typeguard",
"typing_extensions",
"wadler_lindig",
"zipp",
"kauldron>=1.4.1",
]
# This is set automatically by flit using `hackable_diffusion.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/google-research/hackable_diffusion"
repository = "https://github.com/google-research/hackable_diffusion"
[project.optional-dependencies]
# Development deps (unittest, linting, formating,...)
dev = [
"pytest",
"pytest-xdist",
"hypothesis==6.80.0",
"pylint>=2.6.0",
"pyink",
]
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[tool.pyink]
line-length = 80
preview = true
pyink-indentation = 2
pyink-use-majority-quotes = true
[tool.flit.sdist]
exclude = [
"**/*_test.py",
]