-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.21 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
[project]
name = "autoregressive-diffusion-pytorch"
version = "0.2.8"
description = "Autoregressive Diffusion - Pytorch"
authors = [
{ name = "Phil Wang", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">= 3.8"
license = { file = "LICENSE" }
keywords = [
'artificial intelligence',
'deep learning',
'transformers',
'denoising diffusion',
]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
dependencies = [
'einx>=0.3.0',
'einops>=0.8.0',
'ema-pytorch',
'x-transformers>=1.31.14',
'torch>=2.0',
'torchdiffeq',
'tqdm'
]
[project.urls]
Homepage = "https://pypi.org/project/autoregressive-diffusion-pytorch/"
Repository = "https://github.com/lucidrains/autoregressive-diffusion-pytorch"
[project.optional-dependencies]
examples = ["tqdm", "numpy"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["autoregressive_diffusion_pytorch"]