-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (51 loc) · 1.49 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
[tool.poetry]
name = "rul-adapt"
version = "0.0.0"
description = "A collection of unsupervised domain adaption approaches for RUL estimation."
authors = ["Krokotsch, Tilman <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://krokotsch.eu/rul-adapt"
repository = "https://github.com/tilman151/rul-adapt"
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering"
]
packages = [{include = "rul_adapt"}]
[tool.poetry.dependencies]
python = "^3.8"
pytorch-lightning = ">1.8.0.post1"
rul-datasets = ">=0.15.0"
tqdm = "^4.62.2"
hydra-core = "^1.3.1"
pywavelets = "^1.4.1"
dtaidistance = "^2.3.10"
[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "^22.8.0"}
flake8 = "^5.0.4"
mypy = "^1.0.0"
pytest = "^7.1.3"
tensorboard = "^2.11.0"
pytest-mock = "^3.10.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.5.0"
mkdocs-section-index = "^0.3.4"
jupyter = "^1.0.0"
matplotlib = "^3.7.0"
mkdocs-material = "^9.1.21"
mkdocs-jupyter = "^0.24.2"
[tool.pytest.ini_options]
markers = ["integration: does a full train-test run"]
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
exclude = ".venv"
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry_bumpversion.file."rul_datasets/__init__.py"]