-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.27 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "timevqvae"
version = "1.0.1"
description = "Vector-quantized time-series generation with a bidirectional prior model."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [
{ name = "Daesoo Lee" },
]
keywords = ["time-series", "generative-models", "vqvae", "pytorch", "transformer"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
urls = { Homepage = "https://github.com/ML4ITS/TimeVQVAE", Repository = "https://github.com/ML4ITS/TimeVQVAE", Issues = "https://github.com/ML4ITS/TimeVQVAE/issues" }
dependencies = [
"einops>=0.8.2",
"numpy>=2.4.2",
"pyyaml>=6.0.3",
"torch>=2.10.0",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv.sources]
timevqvae = { workspace = true }
[dependency-groups]
dev = [
"build>=1.4.0",
"matplotlib>=3.10.8",
"pytest>=9.0.2",
"timevqvae",
"twine>=6.2.0",
]
[tool.ruff.lint.per-file-ignores]
".google_colab/*.ipynb" = ["E402", "E711", "F841"]