-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
98 lines (77 loc) · 1.97 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
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
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "freqdiff"
version = "0.1.0"
description = "Time series diffusion in the frequency domain."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["diffusion", "time", "series", "fourier", "frequency", "generative", "machine", "learning", "ai"]
authors = [
{name = "Jonathan Crabbé", email = "[email protected]" },
{name = "Nicolas Huynh", email = "[email protected]" }
]
maintainers = [
{name = "Jonathan Crabbé", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"torch",
"torchvision",
"torchaudio",
"lightning",
"kaggle",
"seaborn",
"pandas",
"diffusers[torch]",
"transformers",
"ipython",
"hydra-core",
"wandb",
"POT",
"tables",
"einops",
"SciencePlots",
]
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"mypy",
"black",
"pytest-cov",
"pytest-mypy",
"pytest-black",
"pytest-isort",
"pytest-flakes",
"pre-commit",
]
[project.urls]
"Homepage" = "https://github.com/JonathanCrabbe/FourierDiffusion/"
"Source" = "https://github.com/JonathanCrabbe/FourierDiffusion/"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --flakes --isort --mypy --cov --cov-report html --cov-report term"
testpaths = [
"tests",
]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
exclude = [
'^file1\.py$', # TOML literal string (single-quotes, no escaping necessary)
]
ignore_missing_imports = true
[tool.isort]
profile = "black"