-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
60 lines (54 loc) · 1.31 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
53
54
55
56
57
58
59
60
[project]
name = "e2-tts-pytorch"
version = "1.5.1"
description = "E2-TTS in Pytorch"
authors = [
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
]
readme = "README.md"
requires-python = ">= 3.8"
license = { file = "LICENSE" }
keywords = [
'artificial intelligence',
'deep learning',
'transformers',
'attention mechanism',
'text to speech'
]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
dependencies = [
'accelerate>=0.33.0',
'beartype',
'einops>=0.8.0',
'einx>=0.3.0',
'ema-pytorch>=0.5.2',
'g2p-en',
'jaxtyping',
'loguru',
'pydantic<2',
'tensorboard',
'torch>=2.0',
'torchdiffeq',
'torchaudio>=2.3.1',
'tqdm>=4.65.0',
'vocos',
'x-transformers>=1.42.4',
]
[project.urls]
Homepage = "https://pypi.org/project/e2-tts-pytorch/"
Repository = "https://github.com/lucidrains/e2-tts-pytorch"
[project.optional-dependencies]
examples = ["datasets"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["e2_tts_pytorch"]